php-gallery/css/scss/_variables.scss

66 lines
1.1 KiB
SCSS
Raw Normal View History

2022-08-11 18:28:52 +00:00
$bg: #151515;
$bg-alt: #151515bb;
$fg: #E8E3E3;
$fg-alt: #151515;
$red: #B66467;
2022-09-27 21:39:02 +00:00
$orange: #D8A657;
$yellow: #D9BC8C;
2022-08-11 18:28:52 +00:00
$green: #8C977D;
2022-09-27 21:39:02 +00:00
$blue: #8DA3B9;
$purple: #A988B0;
2022-09-21 14:23:17 +00:00
$black: #121212;
2022-08-11 18:28:52 +00:00
$white: #E8E3E3;
$page-accent: #8C977D;
2022-09-27 21:39:02 +00:00
$warning: $red;
$alert: $orange;
$success: $green;
$neutral: $black;
2022-08-11 18:28:52 +00:00
$shadow: 6px 6px 2px #15151566;
2022-09-22 19:39:15 +00:00
$rad: 0.4rem;
2022-09-26 20:37:26 +00:00
$border-thickness: 0.2rem;
$border: $page-accent $border-thickness solid;
2022-08-11 18:28:52 +00:00
$weight-bold: 621;
$weight-normal: 400;
2022-08-12 16:54:35 +00:00
$font-header: 'Lexend Deca',
sans-serif;
$font-body: 'Secular One',
sans-serif;
2022-08-11 18:28:52 +00:00
// Fallback for items that do not yet support the new sass stylesheet system
:root {
2022-09-13 15:03:09 +00:00
--bg: #{$bg-alt};
2022-08-12 16:54:35 +00:00
--bg-1: #242621;
--bg-2: #1D1E1C;
2022-09-13 15:03:09 +00:00
--bg-3: #{$bg};
2022-08-12 16:54:35 +00:00
2022-09-13 15:03:09 +00:00
--fg: #{$fg};
--fg-dark: #{$fg-alt};
2022-08-12 16:54:35 +00:00
2022-09-13 15:03:09 +00:00
--red: #{$red};
--orange: #{$orange};
2022-09-27 21:39:02 +00:00
--yellow: #{$yellow};
2022-09-13 15:03:09 +00:00
--green: #{$green};
2022-09-27 21:39:02 +00:00
--blue: #{$blue};
--purple: #{$purple};
2022-09-13 15:03:09 +00:00
--black: #{$black};
--white: #{$white};
--accent: #{$page-accent};
2022-09-27 21:39:02 +00:00
--warning: #{$warning};
--alert: #{$alert};
--success: #{$success};
--neutral: #{$neutral};
--shadow: #{$shadow};
--rad: #{$rad};
2022-09-27 21:39:02 +00:00
--border: #{$border};
2022-08-12 16:54:35 +00:00
}