-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathnt_variables.scss
82 lines (61 loc) · 2.15 KB
/
nt_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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// @charset "utf-8" - Unsure if needed
$site-url: "{{ site.url }}";
// Our variables;
$body-font-stack: Open Sans, Helvetica, Roboto, Arial, sans-serif;
$header-font-stack: Montserrat, sans-serif;
// $header-nav-font-stack: Montserrat, sans-serif;
$base-font-size: 1rem;
$base-font-size-compact: $base-font-size * 0.875;
$baseline-multiplier: 1.6;
$baseline: $base-font-size * $baseline-multiplier;
// Branding Colours
// Base Colours
// Purple
$color-nnt-purple: #A54499;
// Orange
$color-nnt-orange: #FFC425;
$color-nnt: (
"purple": $color-nnt-purple,
"purple-dark": darken($color-nnt-purple, 20%),
"purple-light": lighten($color-nnt-purple, 10%),
"purple-lighter": lighten($color-nnt-purple, 20%),
"orange": $color-nnt-orange,
"orange-dark": darken($color-nnt-orange, 20%),
"orange-light": lighten($color-nnt-orange, 10%),
"orange-lighter": lighten($color-nnt-orange, 20%),
"stuff-crimson": #E80025, // Crimson
"stuff-yellow": #FDA038, // Yellow sea
"stuff-violet": #D1009B, // Medium violet red
"stuff-turq": #00C4CB, // Dark turquoise
"brand-alt": #2D9189,
"background": darken($color-nnt-purple, 40%),
"background-alt": darken($color-nnt-purple, 23%),
);
$color-seasons: (
"in-house": map-get($color-nnt, "purple"),
"fringe": map-get($color-nnt, "orange"),
"studio": map-get($color-nnt, "orange"),
"external": map-get($color-nnt, "brand-alt"),
"stuff": map-get($color-nnt, "stuff-yellow"),
);
$color-black: #1c1c1c;
$color-text-white: #eee;
$color-text: $color-text-white;
$color-text-black: #111;
$color-white: #f1f1f1;
// Body colour
$color-background: map-get($color-nnt, "background");
$color-background-alt: map-get($color-nnt, "background-alt");
$color-link: map-get($color-nnt, "orange");
$color-link-visited: darken($color-link, 07%);
$color-link-bg-hover: map-get($color-nnt, "orange-dark");
$color-focus: rgba($color-text-white, 0.3);
$color-decades-base: #601111;
$color-error: #601111;
$color-warning: #864116;
$color-success: #116019;
$color-info: #114560;
$color-grey: #828282;
$color-grey-light: lighten($color-grey, 40%);
$color-grey-dark: darken($color-grey, 25%);
$color-selection: map-get($color-nnt, "orange");