bobjoll 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (96) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +35 -0
  3. package/package.json +25 -0
  4. package/scss/layout/_footer.scss +10 -0
  5. package/scss/layout/_header.scss +10 -0
  6. package/scss/modules/_fonts.scss +26 -0
  7. package/scss/modules/_reset.scss +219 -0
  8. package/scss/modules/bourbon/addons/_clearfix.scss +25 -0
  9. package/scss/modules/bourbon/addons/_ellipsis.scss +30 -0
  10. package/scss/modules/bourbon/addons/_position.scss +48 -0
  11. package/scss/modules/bourbon/addons/_prefixer.scss +66 -0
  12. package/scss/modules/bourbon/addons/_size.scss +51 -0
  13. package/scss/modules/bourbon/addons/_timing-functions.scss +34 -0
  14. package/scss/modules/bourbon/addons/_triangle.scss +63 -0
  15. package/scss/modules/bourbon/css3/_calc.scss +4 -0
  16. package/scss/modules/bourbon/css3/_flex-box.scss +287 -0
  17. package/scss/modules/bourbon/css3/_keyframes.scss +36 -0
  18. package/scss/modules/bourbon/css3/_linear-gradient.scss +38 -0
  19. package/scss/modules/bourbon/css3/_placeholder.scss +8 -0
  20. package/scss/modules/bourbon/css3/_selection.scss +42 -0
  21. package/scss/modules/bourbon/css3/_transition.scss +71 -0
  22. package/scss/modules/mixins/_component.scss +9 -0
  23. package/scss/modules/mixins/_grid.scss +75 -0
  24. package/scss/modules/mixins/_helpers.scss +224 -0
  25. package/scss/modules/variables/_colors.scss +447 -0
  26. package/scss/modules/variables/_general.scss +235 -0
  27. package/scss/partials/_accordion-v1-0.scss +165 -0
  28. package/scss/partials/_autocomplete-v1-0.scss +55 -0
  29. package/scss/partials/_general-v1-0.scss +51 -0
  30. package/scss/partials/_grid-v1-0.scss +109 -0
  31. package/scss/partials/_helper-v1-0.scss +299 -0
  32. package/scss/partials/_icon-v2-0.scss +323 -0
  33. package/scss/partials/_list-v1-0.scss +100 -0
  34. package/scss/partials/_modal-v1-0.scss +159 -0
  35. package/scss/partials/_notification-v1-1.scss +297 -0
  36. package/scss/partials/_progress-bar-v1.0.scss +25 -0
  37. package/scss/partials/_range-v1.0.scss +75 -0
  38. package/scss/partials/_tooltipFixed-v1.0.scss +128 -0
  39. package/scss/partials/_typography-v1-0.scss +201 -0
  40. package/scss/partials/animations/_fade.scss +23 -0
  41. package/scss/partials/animations/_rotate.scss +11 -0
  42. package/scss/partials/animations/_scale.scss +23 -0
  43. package/scss/partials/animations/_slide.scss +31 -0
  44. package/scss/partials/button-v4-0/_component.scss +304 -0
  45. package/scss/partials/form/_checkbox-and-radio-v1-0.scss +187 -0
  46. package/scss/partials/form/_dropdowns-v1-0.scss +323 -0
  47. package/scss/partials/form/_general-v1-0.scss +166 -0
  48. package/scss/partials/form/_group-v1-0.scss +157 -0
  49. package/scss/partials/form/_password-v1-0.scss +28 -0
  50. package/scss/partials/form/_switch-v1-0.scss +128 -0
  51. package/scss/partials/form/_upload-v1-0.scss +91 -0
  52. package/ts/library/common.ts +30 -0
  53. package/ts/library/cookie.ts +47 -0
  54. package/ts/library/delegate.ts +122 -0
  55. package/ts/library/dom.ts +124 -0
  56. package/ts/library/event.ts +138 -0
  57. package/ts/library/extend.js +32 -0
  58. package/ts/library/gr/dom.q.ts +12 -0
  59. package/ts/library/gr/social/dependency/twitter_pu.js +66 -0
  60. package/ts/library/gr/social/facebook.ts +154 -0
  61. package/ts/library/gr/social/google.ts +127 -0
  62. package/ts/library/gr/social/index.ts +35 -0
  63. package/ts/library/gr/social/twitter.ts +65 -0
  64. package/ts/library/helpers.ts +9 -0
  65. package/ts/library/number-abbreviate.js +57 -0
  66. package/ts/library/settings.ts +7 -0
  67. package/ts/library/storage.ts +131 -0
  68. package/ts/library/svg4everybody.legacy.js +122 -0
  69. package/ts/partials/accordion-v1.0.ts +104 -0
  70. package/ts/partials/accordionTabs-v1.0.ts +27 -0
  71. package/ts/partials/alert-v1.0.ts +51 -0
  72. package/ts/partials/copy-v1.0.ts +17 -0
  73. package/ts/partials/countdown-v1.0.ts +119 -0
  74. package/ts/partials/dropdown-v1.0.ts +247 -0
  75. package/ts/partials/hbs-v1.0.ts +9 -0
  76. package/ts/partials/modal-v1.0.ts +213 -0
  77. package/ts/partials/notifications-v1.1.ts +376 -0
  78. package/ts/partials/notify-v1.0.ts +746 -0
  79. package/ts/partials/password-v1.0.ts +19 -0
  80. package/ts/partials/popover-v1.0.ts +125 -0
  81. package/ts/partials/progress-bar-v1.0.ts +29 -0
  82. package/ts/partials/scroll-v1.0.ts +169 -0
  83. package/ts/partials/scrollable-v1.0.ts +90 -0
  84. package/ts/partials/tabs-v1.0.ts +79 -0
  85. package/ts/partials/tags-v1.0.ts +21 -0
  86. package/ts/partials/trigger-v2.0.ts +155 -0
  87. package/ts/partials/upload-v1.0.ts +17 -0
  88. package/ts/views/hbs/alert-v1.0/element.html.hbs +35 -0
  89. package/ts/views/hbs/countdown-v1.0/countdown-inner.hbs +39 -0
  90. package/ts/views/hbs/countdown-v1.0/countdown.hbs +4 -0
  91. package/ts/views/hbs/dropdown-v1.0/element.html.hbs +70 -0
  92. package/ts/views/hbs/helpers.js +58 -0
  93. package/ts/views/hbs/modal-v1.0/element.html.hbs +17 -0
  94. package/ts/views/hbs/notification-v1.1/element-disable.html.hbs +26 -0
  95. package/ts/views/hbs/notification-v1.1/element.html.hbs +43 -0
  96. package/ts/views/hbs/notification-v1.1/wrapper.html.hbs +4 -0
@@ -0,0 +1,224 @@
1
+ // Fluid typo
2
+ @mixin fluid-type($properties, $min-vw, $max-vw, $min-value, $max-value) {
3
+ @each $property in $properties {
4
+ #{$property}: $min-value;
5
+ }
6
+
7
+ @media screen and (min-width: $min-vw) {
8
+ @each $property in $properties {
9
+ #{$property}: calc(#{$min-value} + #{strip-unit($max-value - $min-value)} * (100vw - #{$min-vw}) / #{strip-unit($max-vw - $min-vw)});
10
+ }
11
+ }
12
+
13
+ @media screen and (min-width: $max-vw) {
14
+ @each $property in $properties {
15
+ #{$property}: $max-value;
16
+ }
17
+ }
18
+ }
19
+
20
+ @function strip-unit($number) {
21
+ @if type-of($number) == 'number' and not unitless($number) {
22
+ @return $number / ($number * 0 + 1);
23
+ }
24
+
25
+ @return $number;
26
+ }
27
+
28
+ // Last of map
29
+ @function map-get-last($map) {
30
+ $last-key: '';
31
+
32
+ @each $key, $value in $map {
33
+ $last-key: $key;
34
+ }
35
+
36
+ @return $last-key;
37
+ }
38
+
39
+ // Extend map
40
+ @function map-extend($parent-map, $child-map) {
41
+ $result: $parent-map;
42
+
43
+ @each $key, $value in $child-map {
44
+ @if (not map-has-key($result, $key)) or (type-of(map-get($result, $key)) != type-of($value)) or (not (type-of(map-get($result, $key)) == map and type-of($value) == map)) {
45
+ $result: map-merge($result, ($key: $value));
46
+ }
47
+ @else {
48
+ $result: map-merge($result, ($key: map-extend(map-get($result, $key), $value)));
49
+ }
50
+ }
51
+
52
+ @return $result;
53
+ }
54
+
55
+ // Color
56
+ @function color($color, $group, $opacity: 1, $darken: 0) {
57
+ $array: map-get($colors, $group);
58
+
59
+ @if type-of($array) == "map" {
60
+ $hex: map-get($array, $color);
61
+
62
+ @if $hex == null {
63
+ @warn "Sorry, but '#{$color}' is not found in '#{$group}'.";
64
+ } @else {
65
+ @if type-of($hex) == 'color' {
66
+ $hex: ( $hex, $opacity, $darken );
67
+ }
68
+
69
+ $color: nth($hex, 1);
70
+
71
+ @if nth($hex, 2) and nth($hex, 2) != 1 {
72
+ $color: rgba($color, nth($hex, 2));
73
+ }
74
+
75
+ @if nth($hex, 3) and nth($hex, 3) != 0 {
76
+ $color: call(get-function(if(nth($hex, 3) >=0, darken, lighten)), $color, abs(nth($hex, 3)));
77
+ }
78
+
79
+ @if type-of($hex) == 'list' {
80
+ @if $opacity != 1 {
81
+ $color: rgba($color, $opacity);
82
+ }
83
+
84
+ @if $darken != 1 {
85
+ $color: call(get-function(if($darken >=0, darken, lighten)), $color, abs($darken));
86
+ }
87
+ }
88
+
89
+ @return $color;
90
+ }
91
+ } @else {
92
+ @debug('$array', $array);
93
+ @debug('$color', $color, $group);
94
+ }
95
+ }
96
+
97
+ // Breakpoint
98
+ @mixin breakpoint($size: null, $width: 'max') {
99
+ @if (map-get($breakpoints, $size)) {
100
+ $size: map-get($breakpoints, $size) + 0px;
101
+ }
102
+
103
+ @media screen and (#{$width}-width: $size) {
104
+ @content;
105
+ }
106
+ }
107
+
108
+ // Classes
109
+ @mixin element($element) {
110
+ &__#{$element} {
111
+ @content;
112
+ }
113
+ }
114
+
115
+ @mixin modifier($modifier) {
116
+ &--#{$modifier} {
117
+ @content;
118
+ }
119
+ }
120
+
121
+ // Fonts
122
+ @mixin font-size($var) {
123
+ @if (type-of($var) == 'map') {
124
+ $min-width: if(map-has-key($var, 'min-vw'), map-get($var, 'min-vw'), false);
125
+ $max-width: if(map-has-key($var, 'max-vw'), map-get($var, 'max-vw'), false);
126
+ $min-value: if(map-has-key($var, 'min-value'), map-get($var, 'min-value'), false);
127
+ $max-value: if(map-has-key($var, 'max-value'), map-get($var, 'max-value'), false);
128
+
129
+ @if ($min-width != false AND $max-width != false AND $min-value != false AND $max-value != false) {
130
+ @include fluid-type(font-size, $min-width, $max-width, $min-value, $max-value);
131
+ } @else {
132
+ @each $breakpoint, $font-size in $var {
133
+ @if $breakpoint == null {
134
+ font-size: $font-size;
135
+ } @else {
136
+ @media screen and (min-width: map-get($breakpoints, $breakpoint)) {
137
+ font-size: $font-size;
138
+ }
139
+ }
140
+ }
141
+ }
142
+ } @else {
143
+ font-size: $var;
144
+ }
145
+ }
146
+
147
+ // Extending Placeholder
148
+ @mixin _($name) {
149
+ @extend %#{$name}-#{$current-breakpoint} !optional;
150
+ }
151
+
152
+ // Color classes
153
+ @mixin color-classes($array: $colors, $keys: $colors-keys) {
154
+ @each $key in $keys {
155
+ $colors: map-get($array, $key);
156
+ $colors-text: map-get($array, #{$key}-text);
157
+
158
+ @each $color-name, $color-hex in $colors {
159
+ $color-value: color($color-name, $key);
160
+ $color-text: pick-visible-color(
161
+ $color-value,
162
+ color('text', 'general'),
163
+ color('text-inverted', 'general')
164
+ );
165
+
166
+ @if $colors-text {
167
+ $color-text: map-get($colors-text, $color-name);
168
+ } @else {
169
+
170
+ }
171
+
172
+ .bg {
173
+ @include element($key) {
174
+ @include modifier($color-name) {
175
+ color: $color-text;
176
+ background-color: $color-value;
177
+ }
178
+ }
179
+ }
180
+
181
+ .text {
182
+ @include element($key) {
183
+ @include modifier($color-name) {
184
+ color: $color-value;
185
+ }
186
+ }
187
+ }
188
+
189
+ a.text:hover {
190
+ @include element($key) {
191
+ @include modifier($color-name) {
192
+ color: color($color-name, $key, 1, 10);
193
+ }
194
+ }
195
+ }
196
+ }
197
+ }
198
+ }
199
+
200
+ // Best color for background
201
+ @function luma($c) {
202
+ $-local-red: red(rgba($c, 1.0));
203
+ $-local-green: green(rgba($c, 1.0));
204
+ $-local-blue: blue(rgba($c, 1.0));
205
+
206
+ @return (0.2126 * $-local-red +
207
+ 0.7152 * $-local-green +
208
+ 0.0722 * $-local-blue) / 255;
209
+ }
210
+
211
+ @function pick-visible-color($bg, $c1, $c2) {
212
+ $bg-luma: luma($bg);
213
+ $c1-luma: luma($c1);
214
+ $c2-luma: luma($c2);
215
+
216
+ $c1-diff: abs($bg-luma - $c1-luma);
217
+ $c2-diff: abs($bg-luma - $c2-luma);
218
+
219
+ @if $c1-diff > $c2-diff {
220
+ @return $c1;
221
+ } @else {
222
+ @return $c2;
223
+ }
224
+ }
@@ -0,0 +1,447 @@
1
+ // Gray
2
+ $gray-shade-9: #1D262D !default;
3
+ $gray-shade-8: #374957 !default;
4
+ $gray-shade-7: #5F7D95 !default;
5
+ $gray-shade-6: #869FB2 !default;
6
+ $gray-shade-5: #A5B7C6 !default;
7
+ $gray-shade-4: #BAC8D3 !default;
8
+ $gray-shade-3: #CFD9E0 !default;
9
+ $gray-shade-2: #E3E9ED !default;
10
+ $gray-shade-1: #F8FAFB !default;
11
+
12
+ // Gray named
13
+ $gray-ebony: #1D262D !default;
14
+ $gray-oxford: #374957 !default;
15
+ $gray-bayoux: #4A6375 !default;
16
+ $gray-hoki: #5F7D95 !default;
17
+ $gray-bali: #869FB2 !default;
18
+ $gray-cadet: #A5B7C6 !default;
19
+ $gray-heather: #BAC8D3 !default;
20
+ $gray-gaysir: #CFD9E0 !default;
21
+ $gray-mystic: #E3E9ED !default;
22
+ $gray-hades: #EFF3F6 !default;
23
+ $gray-aqua: #F8FAFB !default;
24
+
25
+ // Dark blue
26
+ $dark-blue-shade-7: #08192B !default;
27
+ $dark-blue-shade-6: #0B2239 !default;
28
+ $dark-blue-shade-5: #0E2A47 !default;
29
+ $dark-blue-shade-4: #113255 !default;
30
+ $dark-blue-shade-3: #143B63 !default;
31
+ $dark-blue-shade-2: #164372 !default;
32
+ $dark-blue-shade-1: #194C80 !default;
33
+
34
+ // Dark blue named
35
+ $dark-blue-blackale: #08192B !default;
36
+ $dark-blue-zodiac: #0B2239 !default;
37
+ $dark-blue-fc: #0E2A47 !default;
38
+ $dark-blue-biscay: #113255 !default;
39
+ $dark-blue-chathams: #143B63 !default;
40
+ $dark-blue-bay: #164372 !default;
41
+ $dark-blue-blumine: #194C80 !default;
42
+ $dark-blue-sea: #1F5A97 !default;
43
+
44
+ // Purple
45
+ $purple-shade-8: #202095 !default;
46
+ $purple-shade-7: #2D2DB0 !default;
47
+ $purple-shade-6: #3636CC !default;
48
+ $purple-shade-5: #4949E7 !default;
49
+ $purple-shade-4: #5F5FF6 !default;
50
+ $purple-shade-3: #8080F1 !default;
51
+ $purple-shade-2: #B3B3FC !default;
52
+ $purple-shade-1: #D7D7FF !default;
53
+
54
+ // Purple named
55
+ $purple-jacksons: #202095 !default;
56
+ $purple-governor: #2D2DB0 !default;
57
+ $purple-spiritual: #3636CC !default;
58
+ $purple-piktab: #4949E7 !default;
59
+ $purple-sara: #5F5FF6 !default;
60
+ $purple-portage: #8080F1 !default;
61
+ $purple-melrose: #B3B3FC !default;
62
+ $purple-fog: #D7D7FF !default;
63
+
64
+ // Blue
65
+ $blue-shade-8: #04458F !default;
66
+ $blue-shade-7: #0353A7 !default;
67
+ $blue-shade-6: #0161CD !default;
68
+ $blue-shade-5: #1273EB !default;
69
+ $blue-shade-4: #2C8CF4 !default;
70
+ $blue-shade-3: #5EB2FC !default;
71
+ $blue-shade-2: #92CDFA !default;
72
+ $blue-shade-1: #C7EBFF !default;
73
+
74
+ // Blue named
75
+ $blue-congress: #04458F !default;
76
+ $blue-endeavour: #0353A7 !default;
77
+ $blue-science: #0161CD !default;
78
+ $blue-freepik: #1273EB !default;
79
+ $blue-campu: #2C8CF4 !default;
80
+ $blue-malibu: #5EB2FC !default;
81
+ $blue-picton: #92CDFA !default;
82
+ $blue-onahau: #C7EBFF !default;
83
+
84
+ // Green
85
+ $green-shade-8: #008B71 !default;
86
+ $green-shade-7: #009D73 !default;
87
+ $green-shade-6: #00AF80 !default;
88
+ $green-shade-5: #2BC48A !default;
89
+ $green-shade-4: #4AD295 !default;
90
+ $green-shade-3: #60E0A3 !default;
91
+ $green-shade-2: #79EBB2 !default;
92
+ $green-shade-1: #A2F7C5 !default;
93
+
94
+ // Green named
95
+ $green-jade: #008B71 !default;
96
+ $green-shamrock: #009D73 !default;
97
+ $green-jungle: #00AF80 !default;
98
+ $green-flaticon: #2BC48A !default;
99
+ $green-pepinen: #4AD295 !default;
100
+ $green-snowy: #60E0A3 !default;
101
+ $green-hint: #79EBB2 !default;
102
+ $green-sugar: #A2F7C5 !default;
103
+
104
+ // Yellow
105
+ $yellow-shade-8: #DD6D10 !default;
106
+ $yellow-shade-7: #EB7D16 !default;
107
+ $yellow-shade-6: #F69110 !default;
108
+ $yellow-shade-5: #FCA120 !default;
109
+ $yellow-shade-4: #FCBD24 !default;
110
+ $yellow-shade-3: #FCD250 !default;
111
+ $yellow-shade-2: #FCDB7E !default;
112
+ $yellow-shade-1: #FFEEB6 !default;
113
+
114
+ // Yellow named
115
+ $yellow-tango: #DD6D10 !default;
116
+ $yellow-poppy: #EB7D16 !default;
117
+ $yellow-sin: #F69110 !default;
118
+ $yellow-premium: #FCA120 !default;
119
+ $yellow-bea: #FCBD24 !default;
120
+ $yellow-dandelion: #FCD250 !default;
121
+ $yellow-paco: #FCDB7E !default;
122
+ $yellow-buttermilk: #FFEEB6 !default;
123
+
124
+ // Red
125
+ $red-shade-8: #C12020 !default;
126
+ $red-shade-7: #D53232 !default;
127
+ $red-shade-6: #EC3A3B !default;
128
+ $red-shade-5: #FB5252 !default;
129
+ $red-shade-4: #FF8578 !default;
130
+ $red-shade-3: #FFA68F !default;
131
+ $red-shade-2: #FFC8AF !default;
132
+ $red-shade-1: #FFDECC !default;
133
+
134
+ // Red named
135
+ $red-thunderbird: #C12020 !default;
136
+ $red-valencia: #D53232 !default;
137
+ $red-bloody: #EC3A3B !default;
138
+ $red-muri: #FB5252 !default;
139
+ $red-salmon: #FF8578 !default;
140
+ $red-lisa: #FFA68F !default;
141
+ $red-wax: #FFC8AF !default;
142
+ $red-bush: #FFDECC !default;
143
+
144
+ $color-main: #1273eb !default;
145
+ $color-dark: #0E2A47 !default;
146
+ $color-border: $gray-shade-2 !default;
147
+ $color-secondary: $gray-shade-1 !default;
148
+ $color-light: #fff !default;
149
+ $color-heading: $gray-shade-8 !default;
150
+ $color-text: $gray-shade-7 !default;
151
+ $color-premium: #FCA120 !default;
152
+
153
+ $social-behance: #1769ff !default;
154
+ $social-dribbble: #ea4c89 !default;
155
+ $social-facebook: #1877F2 !default;
156
+ $social-google: #dd4b39 !default;
157
+ $social-instagram: #c32aa3 !default;
158
+ $social-pinterest: #cb2027 !default;
159
+ $social-stumbleupon: #f74425 !default;
160
+ $social-twitter: #55acee !default;
161
+ $social-vimeo: #aad450 !default;
162
+ $social-youtube: #bb0000 !default;
163
+ $social-whatsapp: #25d366 !default;
164
+ $social-telegram: #0088cc !default;
165
+
166
+ $state-green: $green-flaticon !default;
167
+ $state-blue: $blue-freepik !default;
168
+ $state-gray: $gray-bali !default;
169
+ $state-red: $red-muri !default;
170
+ $state-yellow: $yellow-premium !default;
171
+ $state-purple: $purple-piktab !default;
172
+
173
+ $global-colors: (
174
+ background:(
175
+ 'badge': $color-dark,
176
+ 'badge-inverted': $color-light,
177
+ 'body': $color-light,
178
+ 'body-inverted': $color-dark,
179
+ 'dropdown': $color-light,
180
+ 'footer': $color-secondary,
181
+ 'header': $color-secondary,
182
+ 'input': $color-light,
183
+ 'input-inverted': $color-dark,
184
+ 'switch': $gray-shade-3,
185
+ 'modal': $color-light,
186
+ 'notification': $color-light,
187
+ 'overlay': ($dark-blue-shade-6, .75, 0),
188
+ 'popover': $color-light,
189
+ 'secondary': $color-secondary,
190
+ 'light': $color-light,
191
+ 'table': $color-light,
192
+ 'table-head': ($color-secondary, 1, +2),
193
+ 'table-odd': ($color-secondary, 1, -2),
194
+ 'tabs': $color-light,
195
+ 'tabs-active': $color-secondary,
196
+ 'tags': $color-light,
197
+ 'tags-inverted': $gray-shade-1,
198
+ 'tooltip': $color-light
199
+ ),
200
+ social: (
201
+ 'behance': $social-behance,
202
+ 'dribbble': $social-dribbble,
203
+ 'facebook': $social-facebook,
204
+ 'google': $social-google,
205
+ 'instagram': $social-instagram,
206
+ 'pinterest': $social-pinterest,
207
+ 'stumbleupon': $social-stumbleupon,
208
+ 'telegram': $social-telegram,
209
+ 'twitter': $social-twitter,
210
+ 'vimeo': $social-vimeo,
211
+ 'whatsapp': $social-whatsapp,
212
+ 'youtube': $social-youtube,
213
+ ),
214
+ state: (
215
+ 'green': $state-green,
216
+ 'blue': $state-blue,
217
+ 'gray': $state-gray,
218
+ 'red': $state-red,
219
+ 'yellow': $state-yellow,
220
+ 'purple': $state-purple
221
+ ),
222
+ state-text: (
223
+ 'green': $color-light,
224
+ 'blue': $color-light,
225
+ 'gray': $color-light,
226
+ 'red': $color-light,
227
+ 'yellow': $color-light,
228
+ 'purple': $color-light
229
+ ),
230
+ general: (
231
+ 'border': $color-border,
232
+ 'border-inverted': $color-light,
233
+ 'form-border': $gray-shade-4,
234
+ 'button': $color-main,
235
+ 'button-inverted': $color-light,
236
+ 'heading': $color-heading,
237
+ 'heading-inverted': $color-light,
238
+ 'icon': $color-text,
239
+ 'icon-inverted': $color-light,
240
+ 'link': $color-main,
241
+ 'link-inverted': $color-light,
242
+ 'shadow': $color-dark,
243
+ 'tabs': $color-text,
244
+ 'tabs-border': ($color-secondary, 1, 10),
245
+ 'tabs-active': ($color-main, 1, 1),
246
+ 'tabs-triangle': $color-text,
247
+ 'tabs-triangle-active': $color-border,
248
+ 'accordion': $gray-shade-8,
249
+ 'tags': $color-text,
250
+ 'tags-inverted': $color-light,
251
+ 'text': $color-text,
252
+ 'text-inverted': $color-light,
253
+ 'text-secondary': ($color-text, 1, -2),
254
+ ),
255
+ feedback: (
256
+ wrapper: $color-light,
257
+ secondary: $color-main,
258
+ text: $color-main,
259
+ ),
260
+ buttons: (
261
+ 'default': $color-main,
262
+ 'green': $state-green,
263
+ 'blue': $state-blue,
264
+ 'gray': $state-gray,
265
+ 'red': $state-red,
266
+ 'yellow': $state-yellow,
267
+ 'purple': $state-purple,
268
+ 'inverted': $color-light,
269
+ ),
270
+ buttons-hover: (
271
+ 'default': ($color-main, 1, 5),
272
+ 'green': $green-shade-5,
273
+ 'blue': $blue-shade-5,
274
+ 'gray': $gray-shade-7,
275
+ 'red': $red-shade-5,
276
+ 'yellow': $yellow-shade-5,
277
+ 'purple': $purple-shade-5,
278
+ 'inverted': $gray-shade-2,
279
+ ),
280
+ buttons-active: (
281
+ 'default': ($color-main, 1, 10),
282
+ 'green': $green-shade-6,
283
+ 'blue': $blue-shade-6,
284
+ 'gray': $gray-shade-8,
285
+ 'red': $red-shade-6,
286
+ 'yellow': $yellow-shade-6,
287
+ 'purple': $purple-shade-6,
288
+ 'inverted': $gray-shade-2,
289
+ ),
290
+ buttons-text: (
291
+ 'default': $color-light,
292
+ 'default-outline': $color-main,
293
+ 'green': $color-light,
294
+ 'green-outline': $state-green,
295
+ 'blue': $color-light,
296
+ 'blue-outline': $state-blue,
297
+ 'gray': $color-light,
298
+ 'gray-outline': $state-gray,
299
+ 'red': $color-light,
300
+ 'red-outline': $state-red,
301
+ 'yellow': $color-light,
302
+ 'yellow-outline': $state-yellow,
303
+ 'purple': $color-light,
304
+ 'purple-outline': $state-purple,
305
+ 'inverted': $color-text,
306
+ 'inverted-outline': $color-light,
307
+ ),
308
+ dropdown: (
309
+ bg: transparent,
310
+ text: $color-text,
311
+ bg-hover: $color-main,
312
+ text-hover: $color-light,
313
+ ),
314
+ 'gray': (
315
+ '9': $gray-shade-9,
316
+ '8': $gray-shade-8,
317
+ '7': $gray-shade-7,
318
+ '6': $gray-shade-6,
319
+ '5': $gray-shade-5,
320
+ '4': $gray-shade-4,
321
+ '3': $gray-shade-3,
322
+ '2': $gray-shade-2,
323
+ '1': $gray-shade-1,
324
+ 'ebony': $gray-ebony,
325
+ 'oxford': $gray-oxford,
326
+ 'bayoux': $gray-bayoux,
327
+ 'hoki': $gray-hoki,
328
+ 'bali': $gray-bali,
329
+ 'cadet': $gray-cadet,
330
+ 'heather': $gray-heather,
331
+ 'gaysir': $gray-gaysir,
332
+ 'mystic': $gray-mystic,
333
+ 'hades': $gray-hades,
334
+ 'aqua': $gray-aqua,
335
+ ),
336
+ 'dark-blue': (
337
+ '7': $dark-blue-shade-7,
338
+ '6': $dark-blue-shade-6,
339
+ '5': $dark-blue-shade-5,
340
+ '4': $dark-blue-shade-4,
341
+ '3': $dark-blue-shade-3,
342
+ '2': $dark-blue-shade-2,
343
+ '1': $dark-blue-shade-1,
344
+ 'blackale':$dark-blue-blackale,
345
+ 'zodiac': $dark-blue-zodiac,
346
+ 'fc': $dark-blue-fc,
347
+ 'biscay': $dark-blue-biscay,
348
+ 'chathams': $dark-blue-chathams,
349
+ 'bay': $dark-blue-bay,
350
+ 'blumine': $dark-blue-blumine,
351
+ 'sea': $dark-blue-sea,
352
+ ),
353
+ 'purple': (
354
+ '8': $purple-shade-8,
355
+ '7': $purple-shade-7,
356
+ '6': $purple-shade-6,
357
+ '5': $purple-shade-5,
358
+ '4': $purple-shade-4,
359
+ '3': $purple-shade-3,
360
+ '2': $purple-shade-2,
361
+ '1': $purple-shade-1,
362
+ 'jacksons': $purple-jacksons,
363
+ 'governor': $purple-governor,
364
+ 'spiritual': $purple-spiritual,
365
+ 'piktab': $purple-piktab,
366
+ 'sara': $purple-sara,
367
+ 'portage': $purple-portage,
368
+ 'melrose': $purple-melrose,
369
+ 'fog': $purple-fog,
370
+ ),
371
+ 'blue': (
372
+ '8': $blue-shade-8,
373
+ '7': $blue-shade-7,
374
+ '6': $blue-shade-6,
375
+ '5': $blue-shade-5,
376
+ '4': $blue-shade-4,
377
+ '3': $blue-shade-3,
378
+ '2': $blue-shade-2,
379
+ '1': $blue-shade-1,
380
+ 'congress': $blue-congress,
381
+ 'endeavour': $blue-endeavour,
382
+ 'science': $blue-science,
383
+ 'freepik': $blue-freepik,
384
+ 'campu': $blue-campu,
385
+ 'malibu': $blue-malibu,
386
+ 'picton': $blue-picton,
387
+ 'onahau': $blue-onahau,
388
+ ),
389
+ 'green': (
390
+ '8': $green-shade-8,
391
+ '7': $green-shade-7,
392
+ '6': $green-shade-6,
393
+ '5': $green-shade-5,
394
+ '4': $green-shade-4,
395
+ '3': $green-shade-3,
396
+ '2': $green-shade-2,
397
+ '1': $green-shade-1,
398
+ 'jade': $green-jade,
399
+ 'shamrock': $green-shamrock,
400
+ 'jungle': $green-jungle,
401
+ 'flaticon': $green-flaticon,
402
+ 'pepinen': $green-pepinen,
403
+ 'snowy': $green-snowy,
404
+ 'hint': $green-hint,
405
+ 'sugar': $green-sugar,
406
+ ),
407
+ 'yellow': (
408
+ '8': $yellow-shade-8,
409
+ '7': $yellow-shade-7,
410
+ '6': $yellow-shade-6,
411
+ '5': $yellow-shade-5,
412
+ '4': $yellow-shade-4,
413
+ '3': $yellow-shade-3,
414
+ '2': $yellow-shade-2,
415
+ '1': $yellow-shade-1,
416
+ 'tango': $yellow-tango,
417
+ 'poppy': $yellow-poppy,
418
+ 'sin': $yellow-sin,
419
+ 'premium': $yellow-premium,
420
+ 'bea': $yellow-bea,
421
+ 'dandelion': $yellow-dandelion,
422
+ 'paco': $yellow-paco,
423
+ 'buttermilk': $yellow-buttermilk,
424
+ ),
425
+ 'red': (
426
+ '8': $red-shade-8,
427
+ '7': $red-shade-7,
428
+ '6': $red-shade-6,
429
+ '5': $red-shade-5,
430
+ '4': $red-shade-4,
431
+ '3': $red-shade-3,
432
+ '2': $red-shade-2,
433
+ '1': $red-shade-1,
434
+ 'thunderbird': $red-thunderbird,
435
+ 'valencia': $red-valencia,
436
+ 'bloody': $red-bloody,
437
+ 'muri': $red-muri,
438
+ 'salmon': $red-salmon,
439
+ 'lisa': $red-lisa,
440
+ 'wax': $red-wax,
441
+ 'bush': $red-bush,
442
+ ),
443
+ );
444
+
445
+ // Colors
446
+ $colors-keys: ( 'general', 'background', 'state' ) !default;;
447
+ $colors: $global-colors !default;