Initial commit
This commit is contained in:
@@ -0,0 +1,66 @@
|
||||
// Misc.
|
||||
$misc: (
|
||||
z-index-base: 10000
|
||||
);
|
||||
|
||||
// Duration.
|
||||
$duration: (
|
||||
menu: 0.5s,
|
||||
banner: 1s,
|
||||
transition: 0.2s
|
||||
);
|
||||
|
||||
// Size.
|
||||
$size: (
|
||||
border-radius: 4px,
|
||||
element-height: 3.25rem,
|
||||
element-margin: 2rem,
|
||||
container-width: 80rem,
|
||||
header-height: 3.25rem,
|
||||
inner-width: 75rem,
|
||||
menu-width: 20rem
|
||||
);
|
||||
|
||||
// Font.
|
||||
$font: (
|
||||
family: ('Raleway', Arial, Helvetica, sans-serif),
|
||||
family-fixed: ('Courier New', monospace),
|
||||
weight: 400,
|
||||
weight-light: 300,
|
||||
weight-xlite: 200,
|
||||
weight-bold: 600
|
||||
);
|
||||
|
||||
// Palette.
|
||||
$palette: (
|
||||
bg: #ffffff,
|
||||
fg: #444444,
|
||||
fg-bold: #555555,
|
||||
fg-light: #bbbbbb,
|
||||
border: rgba(0,0,0,0.25),
|
||||
border-bg: rgba(0,0,0,0.075),
|
||||
border-lt: rgba(0,0,0,0.025),
|
||||
highlight: accent1,
|
||||
|
||||
accent1: (
|
||||
bg: #ce1b28,
|
||||
fg: rgba(255,255,255,0.75),
|
||||
fg-bold: #ffffff,
|
||||
fg-light: rgba(255,255,255,0.4),
|
||||
border: rgba(255,255,255,0.25),
|
||||
border-bg: rgba(255,255,255,0.075),
|
||||
border-lt: rgba(255,255,255,0.025),
|
||||
highlight: accent1
|
||||
),
|
||||
|
||||
accent2: (
|
||||
bg: #111111,
|
||||
fg: rgba(255,255,255,0.5),
|
||||
fg-bold: #ffffff,
|
||||
fg-light: rgba(255,255,255,0.4),
|
||||
border: rgba(255,255,255,0.25),
|
||||
border-bg: rgba(255,255,255,0.075),
|
||||
border-lt: rgba(255,255,255,0.025),
|
||||
highlight: accent1
|
||||
)
|
||||
);
|
||||
Reference in New Issue
Block a user