krautworld-website_kraut.world/assets/sass/libs/_vars.scss
2022-05-09 13:22:27 +02:00

64 lines
1.3 KiB
SCSS

// Misc.
$misc: (
z-index-base: 10000
);
// Duration.
$duration: (
nav: 0.5s,
transition: 0.2s
);
// Size.
$size: (
border-radius: 4px,
element-height: 2.75em,
element-margin: 2em,
inner: 75em,
section-spacing: 4em
);
// Font.
$font: (
family: (Arial, Helvetica, sans-serif),
family-fixed: ('Courier New', monospace),
weight: normal,
weight-bold: normal,
kerning-heading: -0.0125em,
kerning-alt: 0.25em
);
// Palette.
$palette: (
bg: #ffffff,
bg-alt: #f7f7f7,
fg: #999999,
fg-bold: #707070,
fg-light: #999999,
border: rgba(144,144,144,0.2),
border-bg: rgba(144,144,144,0.075),
border-bg-alt: rgba(144,144,144,0.15),
highlight: accent1,
accent1: (
bg: #db6172,
fg: mix(#db6172, #ffffff, 25%),
fg-bold: #ffffff,
fg-light: mix(#db6172, #ffffff, 40%),
border: rgba(255,255,255,0.35),
border-bg: rgba(255,255,255,0.125),
border-bg-alt: rgba(255,255,255,0.15),
highlight: accent1
),
accent2: (
bg: #303639,
fg: #ffffff,
fg-bold: #ffffff,
fg-light: #ffffff,
border: #ffffff,
border-bg: rgba(255,255,255,0.075),
border-bg-alt: rgba(255,255,255,0.15),
highlight: accent1
)
);