aboutsummaryrefslogtreecommitdiff
path: root/assets/sass/libs/_vars.scss
diff options
context:
space:
mode:
authorDylan Bolger <dylanbolger@Dylans-MacBook-Air.local>2018-03-18 00:13:48 -0500
committerDylan Bolger <dylanbolger@Dylans-MacBook-Air.local>2018-03-18 00:13:48 -0500
commitf3195ea547bae0c0a31aef22119c0d2af50ec760 (patch)
treedc5cf29d80f4f09460b889acabdefce7d432c112 /assets/sass/libs/_vars.scss
parentfdc4d84659a602447a77834b64595d9e9450a6c4 (diff)
downloadpersonal-website-f3195ea547bae0c0a31aef22119c0d2af50ec760.tar.xz
personal-website-f3195ea547bae0c0a31aef22119c0d2af50ec760.zip
c
Diffstat (limited to 'assets/sass/libs/_vars.scss')
-rwxr-xr-xassets/sass/libs/_vars.scss63
1 files changed, 63 insertions, 0 deletions
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