-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path_variables.scss
39 lines (33 loc) · 1.11 KB
/
_variables.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//THEMING OPTIONS
$theme-color-white: #fff;
$theme-color-primary: #6ac491;
$theme-color-secondary: #FF736A;
$theme-color-background: $theme-color-white;
$theme-color-visited: #99a;
$theme-color-text: #020405;
$theme-color-muted: #A5A5A5;
$theme-hover-color: $theme-color-primary;
$theme-default-font-weight: 300;
$theme-button-font-weight: 500;
$theme-primary-link-color: $theme-color-primary;
$theme-border-radius: 2px;
//BOOTSTRAP ASSIGNMENTS
$theme-navbar-height: 50px;
//BRANDING COLORS
$facebook-blue: #3B5998;
$google-red: #D50F25;
//BOOTSTRAP OVERRIDES
$btn-font-weight: 300;
$font-family-sans-serif: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
$text-color: $theme-color-text;
$body-bg: $theme-color-background;
$border-radius-base: $theme-border-radius;
$headings-font-weight: $theme-default-font-weight;
$brand-primary: $theme-color-primary;
$input-border-focus: $theme-color-primary;
$btn-primary-bg: $theme-color-primary;
$btn-primary-color: $theme-color-white;
$input-border-focus: $theme-color-primary;
$link-color: $theme-color-text;
$link-hover-color: $theme-hover-color;
$link-hover-decoration: none;