1
0
Fork 0
mirror of https://github.com/GuerillaHQ/now-playing synced 2024-06-27 14:01:35 +00:00

Set main colors palette's hues as variables for easy customization

This commit is contained in:
Tixie 2023-07-24 15:48:43 +02:00
parent 6e716d74d8
commit 13608891ff

View file

@ -5,15 +5,19 @@
// palette
// --------------------------------------------------------------
$color-primary: #0e1537;
$color-secondary: #ff2749;
$color-tertiary: #fec156;
$color-primary-hue: 230;
$color-secondary-hue: 351;
$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;
// backgrounds
// --------------------------------------------------------------
$color-bg-head: #0e1848;
$color-bg-head: hsl($color-primary-hue, 67%, 17%);
// texts
// --------------------------------------------------------------