_variables.scss 6.26 KB
Newer Older
1 2 3
// studio - utilities - variables
// ====================

4 5 6 7 8 9 10 11 12 13 14 15
// Table of Contents 
// * +Grid
// * +Fonts
// * +Colors - Utility
// * +Colors - Primary
// * +Colors - Shadow
// * +Color - Application
// * +Timing
// * +Archetype UI
// * +Specific UI
// * +Deprecated

16 17
$baseline: 20px;

18 19
// +Grid
// ==================== 
20 21
$gw-column: ($baseline*3);
$gw-gutter: $baseline;
22 23 24
$fg-column: $gw-column;
$fg-gutter: $gw-gutter;
$fg-max-columns: 12;
25
$fg-max-width: 1280px;
26
$fg-min-width: 900px;
27

28 29
// +Fonts
// ==================== 
Brian Talbot committed
30 31 32
$f-sans-serif: 'Open Sans','Helvetica Neue', Helvetica, Arial, sans-serif;
$f-monospace: 'Bitstream Vera Sans Mono', Consolas, Courier, monospace;

33 34 35
// +Colors - Utility
// ==================== 
$transparent: rgba(0,0,0,0); // used when color value is needed for UI width/transitions but element is transparent
36

37 38
// +Colors - Primary
// ==================== 
Brian Talbot committed
39
$black: rgb(0,0,0);
40 41 42 43
$black-t0: rgba($black, 0.125);
$black-t1: rgba($black, 0.25);
$black-t2: rgba($black, 0.5);
$black-t3: rgba($black, 0.75);
44

45
$white: rgb(255,255,255);
46 47 48 49
$white-t0: rgba($white, 0.125);
$white-t1: rgba($white, 0.25);
$white-t2: rgba($white, 0.5);
$white-t3: rgba($white, 0.75);
50 51 52 53 54 55 56

$gray: rgb(127,127,127);
$gray-l1: tint($gray,20%);
$gray-l2: tint($gray,40%);
$gray-l3: tint($gray,60%);
$gray-l4: tint($gray,80%);
$gray-l5: tint($gray,90%);
57
$gray-l6: tint($gray,95%);
58
$gray-l7: tint($gray,99%);
59 60 61 62 63
$gray-d1: shade($gray,20%);
$gray-d2: shade($gray,40%);
$gray-d3: shade($gray,60%);
$gray-d4: shade($gray,80%);

64
$blue: rgb(0, 159, 230);
65 66 67 68 69 70 71 72 73
$blue-l1: tint($blue,20%);
$blue-l2: tint($blue,40%);
$blue-l3: tint($blue,60%);
$blue-l4: tint($blue,80%);
$blue-l5: tint($blue,90%);
$blue-d1: shade($blue,20%);
$blue-d2: shade($blue,40%);
$blue-d3: shade($blue,60%);
$blue-d4: shade($blue,80%);
Brian Talbot committed
74 75 76 77 78 79
$blue-s1: saturate($blue,15%);
$blue-s2: saturate($blue,30%);
$blue-s3: saturate($blue,45%);
$blue-u1: desaturate($blue,15%);
$blue-u2: desaturate($blue,30%);
$blue-u3: desaturate($blue,45%);
80 81 82 83
$blue-t0: rgba($blue, 0.125);
$blue-t1: rgba($blue, 0.25);
$blue-t2: rgba($blue, 0.50);
$blue-t3: rgba($blue, 0.75);
84

85
$pink: rgb(183, 37, 103); // #b72567;
86 87 88 89 90 91 92 93 94
$pink-l1: tint($pink,20%);
$pink-l2: tint($pink,40%);
$pink-l3: tint($pink,60%);
$pink-l4: tint($pink,80%);
$pink-l5: tint($pink,90%);
$pink-d1: shade($pink,20%);
$pink-d2: shade($pink,40%);
$pink-d3: shade($pink,60%);
$pink-d4: shade($pink,80%);
Brian Talbot committed
95 96 97 98 99 100
$pink-s1: saturate($pink,15%);
$pink-s2: saturate($pink,30%);
$pink-s3: saturate($pink,45%);
$pink-u1: desaturate($pink,15%);
$pink-u2: desaturate($pink,30%);
$pink-u3: desaturate($pink,45%);
101

102
$red: rgb(178, 6, 16);  // #b20610;
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
$red-l1: tint($red,20%);
$red-l2: tint($red,40%);
$red-l3: tint($red,60%);
$red-l4: tint($red,80%);
$red-l5: tint($red,90%);
$red-d1: shade($red,20%);
$red-d2: shade($red,40%);
$red-d3: shade($red,60%);
$red-d4: shade($red,80%);
$red-s1: saturate($red,15%);
$red-s2: saturate($red,30%);
$red-s3: saturate($red,45%);
$red-u1: desaturate($red,15%);
$red-u2: desaturate($red,30%);
$red-u3: desaturate($red,45%);

119
$green: rgb(37, 184, 90); // #25b85a
120 121 122 123 124 125 126 127 128
$green-l1: tint($green,20%);
$green-l2: tint($green,40%);
$green-l3: tint($green,60%);
$green-l4: tint($green,80%);
$green-l5: tint($green,90%);
$green-d1: shade($green,20%);
$green-d2: shade($green,40%);
$green-d3: shade($green,60%);
$green-d4: shade($green,80%);
Brian Talbot committed
129 130 131 132 133 134
$green-s1: saturate($green,15%);
$green-s2: saturate($green,30%);
$green-s3: saturate($green,45%);
$green-u1: desaturate($green,15%);
$green-u2: desaturate($green,30%);
$green-u3: desaturate($green,45%);
135

Brian Talbot committed
136
$yellow: rgb(237, 189, 60);
137 138 139 140 141 142 143 144 145
$yellow-l1: tint($yellow,20%);
$yellow-l2: tint($yellow,40%);
$yellow-l3: tint($yellow,60%);
$yellow-l4: tint($yellow,80%);
$yellow-l5: tint($yellow,90%);
$yellow-d1: shade($yellow,20%);
$yellow-d2: shade($yellow,40%);
$yellow-d3: shade($yellow,60%);
$yellow-d4: shade($yellow,80%);
Brian Talbot committed
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
$yellow-s1: saturate($yellow,15%);
$yellow-s2: saturate($yellow,30%);
$yellow-s3: saturate($yellow,45%);
$yellow-u1: desaturate($yellow,15%);
$yellow-u2: desaturate($yellow,30%);
$yellow-u3: desaturate($yellow,45%);

$orange: rgb(237, 189, 60);
$orange-l1: tint($orange,20%);
$orange-l2: tint($orange,40%);
$orange-l3: tint($orange,60%);
$orange-l4: tint($orange,80%);
$orange-l5: tint($orange,90%);
$orange-d1: shade($orange,20%);
$orange-d2: shade($orange,40%);
$orange-d3: shade($orange,60%);
$orange-d4: shade($orange,80%);
$orange-s1: saturate($orange,15%);
$orange-s2: saturate($orange,30%);
$orange-s3: saturate($orange,45%);
$orange-u1: desaturate($orange,15%);
$orange-u2: desaturate($orange,30%);
$orange-u3: desaturate($orange,45%);
169

170 171
// +Colors - Shadows
// ==================== 
172 173 174 175 176
$shadow: rgba($black, 0.2);
$shadow-l1: rgba($black, 0.1);
$shadow-l2: rgba($black, 0.05);
$shadow-d1: rgba($black, 0.4);
$shadow-d2: rgba($black, 0.6);
177

178 179
// +Colors - Application
// ==================== 
180 181 182 183 184 185
$color-draft: $gray-l3;
$color-live: $blue;
$color-ready: $green;
$color-warning: $orange-l2;
$color-error: $red-l2;
$color-staff-only: $black;
186
$color-visibility-set: $black;
187 188 189

$color-heading-base: $gray-d2;
$color-copy-base: $gray-l1;
190
$color-copy-emphasized: $gray-d2;
191

192 193 194
// +Timing
// ==================== 
// used for animation/transition mixin syncing
195 196 197 198 199 200 201 202
$tmg-s3: 3.0s;
$tmg-s2: 2.0s;
$tmg-s1: 1.0s;
$tmg-avg: 0.75s;
$tmg-f1: 0.50s;
$tmg-f2: 0.25s;
$tmg-f3: 0.125s;

203 204
// +Archetype UI
// ==================== 
205 206 207 208 209 210
$ui-action-primary-color: $blue-u2;
$ui-action-primary-color-focus: $blue-s1;

$ui-link-color: $blue-u2;
$ui-link-color-focus: $blue-s1;

211 212
// +Specific UI
// ==================== 
213 214
$ui-notification-height: ($baseline*10);
$ui-update-color: $blue-l4;
215

216 217 218
// +Deprecated 
// ==================== 
// do not use, future clean up will use updated styles
219
$baseFontColor: $gray-d2;
220
$lighter-base-font-color: rgb(100,100,100);
221
$offBlack: #3c3c3c;
222
$green: #108614;
Tom Giannattasio committed
223
$lightGrey: #edf1f5;
224
$mediumGrey: #b0b6c2;
225
$darkGrey: #8891a1;
226
$extraDarkGrey: #3d4043;
227
$paleYellow: #fffcf1;
228
$yellow: rgb(255, 254, 223);
229 230 231 232
$green: rgb(37, 184, 90);
$brightGreen: rgb(22, 202, 87);
$disabledGreen: rgb(124, 206, 153);
$darkGreen: rgb(52, 133, 76);
233
$lightBluishGrey: rgb(197, 207, 223);
234
$lightBluishGrey2: rgb(213, 220, 228);
235
$error-red: rgb(253, 87, 87);
Brian Talbot committed
236

237 238 239 240

//carryover from LMS for xmodules
$sidebar-color: rgb(246, 246, 246);

Brian Talbot committed
241
// type
242
$sans-serif: $f-sans-serif;
Brian Talbot committed
243
$body-line-height: golden-ratio(.875em, 1);
244 245 246

// carried over from LMS for xmodules
$action-primary-active-bg: #1AA1DE; // $m-blue
247
$very-light-text: $white;