This repository has been archived by the owner on Aug 20, 2021. It is now read-only.
forked from jgthms/bulma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathruhacks.sass
82 lines (63 loc) · 3.18 KB
/
ruhacks.sass
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
@import "sass/utilities/initial-variables"
@import "sass/utilities/functions"
// Primary Palette
$ryerson-blue: hsl(211, 100%, 30%) !default
$ryerson-gold: hsl(52, 100%, 50%) !default
$ryerson-blue-invert: findColorInvert($ryerson-blue) !default
$ryerson-gold-invert: findColorInvert($ryerson-gold) !default
// Secondary Palette
// From darkest to lightest
$blue-midnight: hsl(216, 100%, 22%) !default
$blue-lochmara: hsl(204, 100%, 39%) !default
$blue-cerulean: hsl(198, 100%, 47%) !default
$blue-malibu: hsl(200, 87%, 66%) !default
$orange-web: hsl(38, 100%, 50%) !default
$yellow-supernova: hsl(46, 100%, 52%) !default
$yellow-turbo: hsl(56, 100%, 50%) !default
$gray-dusty: hsl(0, 0%, 60%) !default
$gray-alto: hsl(0, 0%, 85%) !default
$blue-midnight-invert: findColorInvert($blue-midnight) !default
$blue-lochmara-invert: findColorInvert($blue-lochmara) !default
$blue-cerulean-invert: findColorInvert($blue-cerulean) !default
$blue-malibu-invert: findColorInvert($blue-malibu) !default
$orange-web-invert: findColorInvert($orange-web) !default
$yellow-supernova-invert: findColorInvert($yellow-supernova) !default
$yellow-turbo-invert: findColorInvert($yellow-turbo) !default
$gray-dusty-invert: findColorInvert($gray-dusty) !default
$gray-alto-invert: findColorInvert($gray-alto) !default
// Tertiary Palette
$orange-blaze: hsl(27, 100%, 50%) !default
$red-ribbon: hsl(347, 100%, 45%) !default
$red-rose: hsl(331, 100%, 46%) !default
$purple-seance: hsl(294, 60%, 32%) !default
$blue-marguerite: hsl(240, 38%, 61%) !default
$yellow-buddha-gold: hsl(60, 100%, 37%) !default
$green-haze: hsl(146, 100%, 30%) !default
$blue-bondi: hsl(183, 100%, 34%) !default
$blue-tradewind: hsl(168, 40%, 58%) !default
$orange-blaze-invert: findColorInvert($orange-blaze) !default
$red-ribbon-invert: findColorInvert($red-ribbon) !default
$red-rose-invert: findColorInvert($red-rose) !default
$purple-seance-invert: findColorInvert($purple-seance) !default
$blue-marguerite-invert: findColorInvert($blue-marguerite) !default
$yellow-buddha-gold-invert: findColorInvert($yellow-buddha-gold) !default
$green-haze-invert: findColorInvert($green-haze) !default
$blue-bondi-invert: findColorInvert($blue-bondi) !default
$blue-tradewind-invert: findColorInvert($blue-tradewind) !default
// Derived Colors Override
$primary: $ryerson-blue !default
$primary-inverted: $ryerson-blue-invert !default
$info: $blue-cerulean !default
$info-invert: $blue-cerulean-invert !default
$success: $green-haze !default
$success-invert: $green-haze-invert !default
$warning: $ryerson-gold !default
$warning-invert: $ryerson-gold-invert !default
$danger: $red-ribbon !default
$danger-invert: $red-ribbon-invert !default
$link: $blue-lochmara !default
$link-invert: $blue-lochmara-invert !default
// Typography Override
$family-sans-serif: "Ubuntu", BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !default
$family-monospace: "Ubuntu Mono", monospace !default
@import "bulma"