mirror of
https://github.com/GuerillaStudio/now-playing
synced 2024-11-07 11:31:51 +00:00
Set main colors palette's hues as variables for easy customization
This commit is contained in:
parent
6e716d74d8
commit
13608891ff
1 changed files with 8 additions and 4 deletions
|
@ -5,15 +5,19 @@
|
||||||
// palette
|
// palette
|
||||||
// --------------------------------------------------------------
|
// --------------------------------------------------------------
|
||||||
|
|
||||||
$color-primary: #0e1537;
|
$color-primary-hue: 230;
|
||||||
$color-secondary: #ff2749;
|
$color-secondary-hue: 351;
|
||||||
$color-tertiary: #fec156;
|
$color-tertiary-hue: 38;
|
||||||
|
|
||||||
|
$color-primary: hsl($color-primary-hue, 59%, 14%);
|
||||||
|
$color-secondary: hsl($color-secondary-hue, 100%, 58%);
|
||||||
|
$color-tertiary: hsl($color-tertiary-hue, 99%, 67%);
|
||||||
$color-info: #2185d0;
|
$color-info: #2185d0;
|
||||||
|
|
||||||
// backgrounds
|
// backgrounds
|
||||||
// --------------------------------------------------------------
|
// --------------------------------------------------------------
|
||||||
|
|
||||||
$color-bg-head: #0e1848;
|
$color-bg-head: hsl($color-primary-hue, 67%, 17%);
|
||||||
|
|
||||||
// texts
|
// texts
|
||||||
// --------------------------------------------------------------
|
// --------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in a new issue