From f3195ea547bae0c0a31aef22119c0d2af50ec760 Mon Sep 17 00:00:00 2001 From: Dylan Bolger Date: Sun, 18 Mar 2018 00:13:48 -0500 Subject: c --- assets/sass/libs/_vars.scss | 63 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100755 assets/sass/libs/_vars.scss (limited to 'assets/sass/libs/_vars.scss') diff --git a/assets/sass/libs/_vars.scss b/assets/sass/libs/_vars.scss new file mode 100755 index 0000000..4ef40fb --- /dev/null +++ b/assets/sass/libs/_vars.scss @@ -0,0 +1,63 @@ +// Misc. + $misc: ( + z-index-base: 10000, + header-side: 'right' + ); + +// Duration. + $duration: ( + header: 0.5s, + transition: 0.2s + ); + +// Size. + $size: ( + border-radius: 5px, + border-width: 2px, + element-height: 2.75em, + element-margin: 2.25em + ); + +// Font. + $font: ( + family: ('Lato', sans-serif), + family-fixed: ('Source Code Pro', monospace), + weight: 400, + weight-bold: 700 + ); + +// Palette. + $palette: ( + bg: #fff, + fg: #888, + fg-bold: #777, + fg-light: #aaa, + border: #f4f4f4, + border-bg: #fafafa, + border2: #e4e4e4, + border2-bg: #f4f4f4, + border3: #e0e0e0, + border3-bg: #eaeaea, + + accent1: ( + bg: #4acaa8, + fg-bold: #ffffff, + fg: mix(#4acaa8, #ffffff, 25%), + fg-light: mix(#4acaa8, #ffffff, 40%) + ), + + accent2: ( + bg: #989898, + fg-bold: #ffffff, + fg: mix(#989898, #ffffff, 25%), + fg-light: mix(#989898, #ffffff, 40%) + ), + + header: ( + bg: #4acaa8, + fg-bold: #ffffff, + fg: mix(#4acaa8, #ffffff, 25%), + fg-light: mix(#4acaa8, #ffffff, 40%), + border: mix(#4acaa8, #ffffff, 90%) + ) + ); \ No newline at end of file -- cgit v1.2.3