testtheme 0.1.1

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 (117) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +107 -0
  4. data/README.md~ +111 -0
  5. data/_includes/contribute-links.html +11 -0
  6. data/_includes/doc-side-nav.html +62 -0
  7. data/_includes/doc-top-nav.html +17 -0
  8. data/_includes/figure.html +22 -0
  9. data/_includes/footer.html +51 -0
  10. data/_includes/footer.html~ +52 -0
  11. data/_includes/home.html +4 -0
  12. data/_includes/nav.html +45 -0
  13. data/_includes/nav.html~ +45 -0
  14. data/_includes/search-box.html +14 -0
  15. data/_includes/search-box.html~ +14 -0
  16. data/_includes/section-index.html +42 -0
  17. data/_layouts/about.html +12 -0
  18. data/_layouts/base.html +82 -0
  19. data/_layouts/base.html~ +82 -0
  20. data/_layouts/blog.html +17 -0
  21. data/_layouts/bugs.html +12 -0
  22. data/_layouts/community.html +12 -0
  23. data/_layouts/compress.html +10 -0
  24. data/_layouts/default.html +12 -0
  25. data/_layouts/docs.html +62 -0
  26. data/_layouts/docs.html~ +22 -0
  27. data/_layouts/faq.html +10 -0
  28. data/_layouts/landing.html +8 -0
  29. data/_layouts/post.html +26 -0
  30. data/_layouts/search-results.html +35 -0
  31. data/_layouts/troubleshooting.html +12 -0
  32. data/_sass/base/_common.scss +89 -0
  33. data/_sass/base/_config.scss +59 -0
  34. data/_sass/base/_markdown.scss +114 -0
  35. data/_sass/base/_override.scss +82 -0
  36. data/_sass/base/_reset.scss +72 -0
  37. data/_sass/base/_text.scss +46 -0
  38. data/_sass/layouts/_about.scss +2 -0
  39. data/_sass/layouts/_blog.scss +142 -0
  40. data/_sass/layouts/_bugs.scss +2 -0
  41. data/_sass/layouts/_community.scss +14 -0
  42. data/_sass/layouts/_docs.scss +42 -0
  43. data/_sass/layouts/_faq.scss +25 -0
  44. data/_sass/layouts/_landing.scss +192 -0
  45. data/_sass/layouts/_post.scss +12 -0
  46. data/_sass/layouts/_search-results.scss +11 -0
  47. data/_sass/layouts/_troubleshooting.scss +2 -0
  48. data/_sass/layouts/_welcome.scss +2 -0
  49. data/_sass/main.scss +32 -0
  50. data/_sass/materialize/components/_buttons.scss +199 -0
  51. data/_sass/materialize/components/_color.scss +412 -0
  52. data/_sass/materialize/components/_global.scss +32 -0
  53. data/_sass/materialize/components/_mixins.scss +5 -0
  54. data/_sass/materialize/components/_roboto.scss +49 -0
  55. data/_sass/materialize/components/_variables.scss +309 -0
  56. data/_sass/materialize/components/_waves.scss +173 -0
  57. data/_sass/materialize/materialize.scss +15 -0
  58. data/_sass/modules/_buttons.scss +88 -0
  59. data/_sass/modules/_contribute-links.scss +64 -0
  60. data/_sass/modules/_doc-nav.scss +111 -0
  61. data/_sass/modules/_footer.scss +114 -0
  62. data/_sass/modules/_hero.scss +34 -0
  63. data/_sass/modules/_nav.scss +83 -0
  64. data/_sass/modules/_nav.scss~ +214 -0
  65. data/_sass/modules/_search-box.scss +47 -0
  66. data/_sass/modules/_section-index.scss +22 -0
  67. data/_sass/modules/_subscribe-form.scss +47 -0
  68. data/_sass/modules/_syntax-highlighting.scss +62 -0
  69. data/_sass/modules/_toc.scss +62 -0
  70. data/_sass/pages/_about.scss +374 -0
  71. data/_sass/pages/_blog.scss +149 -0
  72. data/_sass/pages/_community.scss +119 -0
  73. data/_sass/pages/_contribute.scss +5 -0
  74. data/_sass/pages/_docs.scss +72 -0
  75. data/_sass/pages/_faq.scss +37 -0
  76. data/_sass/pages/_glossary.scss +38 -0
  77. data/_sass/pages/_landing.scss +111 -0
  78. data/assets/css/styles.scss +71 -0
  79. data/assets/fonts/roboto/Roboto-Bold.eot +0 -0
  80. data/assets/fonts/roboto/Roboto-Bold.ttf +0 -0
  81. data/assets/fonts/roboto/Roboto-Bold.woff +0 -0
  82. data/assets/fonts/roboto/Roboto-Bold.woff2 +0 -0
  83. data/assets/fonts/roboto/Roboto-Light.eot +0 -0
  84. data/assets/fonts/roboto/Roboto-Light.ttf +0 -0
  85. data/assets/fonts/roboto/Roboto-Light.woff +0 -0
  86. data/assets/fonts/roboto/Roboto-Light.woff2 +0 -0
  87. data/assets/fonts/roboto/Roboto-Medium.eot +0 -0
  88. data/assets/fonts/roboto/Roboto-Medium.ttf +0 -0
  89. data/assets/fonts/roboto/Roboto-Medium.woff +0 -0
  90. data/assets/fonts/roboto/Roboto-Medium.woff2 +0 -0
  91. data/assets/fonts/roboto/Roboto-Regular.eot +0 -0
  92. data/assets/fonts/roboto/Roboto-Regular.ttf +0 -0
  93. data/assets/fonts/roboto/Roboto-Regular.woff +0 -0
  94. data/assets/fonts/roboto/Roboto-Regular.woff2 +0 -0
  95. data/assets/fonts/roboto/Roboto-Thin.eot +0 -0
  96. data/assets/fonts/roboto/Roboto-Thin.ttf +0 -0
  97. data/assets/fonts/roboto/Roboto-Thin.woff +0 -0
  98. data/assets/fonts/roboto/Roboto-Thin.woff2 +0 -0
  99. data/assets/img/caret-dark.svg +7 -0
  100. data/assets/img/caret.svg +7 -0
  101. data/assets/img/external-link-dark.svg +13 -0
  102. data/assets/img/external-link-icon.png +0 -0
  103. data/assets/img/external-link.svg +13 -0
  104. data/assets/img/github-dark.svg +15 -0
  105. data/assets/img/github-ribbon.svg +128 -0
  106. data/assets/img/github.png +0 -0
  107. data/assets/img/github.svg +15 -0
  108. data/assets/img/group.png +0 -0
  109. data/assets/img/hero-bg.png +0 -0
  110. data/assets/img/icon_github.svg +15 -0
  111. data/assets/img/more-arrow-dark.svg +13 -0
  112. data/assets/img/more-arrow.png +0 -0
  113. data/assets/img/more-arrow.svg +13 -0
  114. data/assets/img/slack.png +0 -0
  115. data/assets/img/stackoverflow.png +0 -0
  116. data/assets/img/x.svg +8 -0
  117. metadata +201 -0
@@ -0,0 +1,12 @@
1
+ .post {
2
+ .post-wrapper {
3
+ padding-top: $spacing--xxxl;
4
+ }
5
+
6
+ .content-attribution {
7
+ color: $dark-gray;
8
+ font-size: 15px;
9
+ font-style: italic;
10
+ margin: $spacing--xxxl 0 $spacing--xl;
11
+ }
12
+ }
@@ -0,0 +1,11 @@
1
+ .search-results {
2
+ .panel {
3
+ margin-top: 30px;
4
+ }
5
+
6
+ .gsc-search-box, .gsc-above-wrapper-area, .gsc-resultsbox-visible {
7
+ table, th, td {
8
+ border: 0;
9
+ }
10
+ }
11
+ }
@@ -0,0 +1,2 @@
1
+ .troubleshooting {
2
+ }
@@ -0,0 +1,2 @@
1
+ .welcome {
2
+ }
@@ -0,0 +1,32 @@
1
+ ---
2
+ # Front matter comment to ensure Jekyll properly reads file.
3
+ ---
4
+
5
+
6
+ @import url("https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/smoothness/jquery-ui.css");
7
+
8
+ @import "base/_config";
9
+ @import "base/_reset";
10
+ @import "base/_colors";
11
+ @import "base/_common";
12
+ @import "base/_text";
13
+ @import "base/_override";
14
+ @import "base/_markdown";
15
+
16
+ @import "modules/_buttons";
17
+ @import "modules/_doc-nav";
18
+ @import "modules/_footer";
19
+ @import "modules/_hero";
20
+ @import "modules/_nav";
21
+ @import "modules/_contribute-links";
22
+ @import "modules/_subscribe-form";
23
+
24
+ @import "pages/_blog";
25
+ @import "pages/_docs";
26
+ @import "pages/_faq";
27
+ @import "pages/_glossary";
28
+ @import "pages/_landing";
29
+ @import "pages/_about";
30
+ @import "pages/_community";
31
+ @import "pages/_contribute";
32
+ @import "materialize/materialize.scss";
@@ -0,0 +1,199 @@
1
+ // shared styles
2
+ .btn,
3
+ .btn-flat {
4
+ box-sizing: content-box;
5
+ border: $button-border;
6
+ border-radius: $button-radius;
7
+ display: inline-block;
8
+ font-size: $button-font-size;
9
+ height: $button-height;
10
+ line-height: $button-height;
11
+ outline: 0;
12
+ padding: $button-padding;
13
+ text-transform: uppercase;
14
+ vertical-align: middle;
15
+ // Gets rid of tap active state
16
+ -webkit-tap-highlight-color: transparent;
17
+ }
18
+
19
+ // Disabled shared style
20
+ .btn.disabled,
21
+ .btn-floating.disabled,
22
+ .btn-large.disabled,
23
+ .btn:disabled
24
+ .btn-large:disabled,
25
+ .btn-floating:disabled {
26
+ background-color: $button-disabled-background !important;
27
+ box-shadow: none;
28
+ color: $button-disabled-color !important;
29
+ cursor: default;
30
+
31
+ * {
32
+ pointer-events: none;
33
+ }
34
+
35
+ &:hover {
36
+ background-color: $button-disabled-background !important;
37
+ color: $button-disabled-color !important;
38
+ }
39
+ }
40
+
41
+ // Shared icon styles
42
+ .btn,
43
+ .btn-floating,
44
+ .btn-large,
45
+ .btn-flat {
46
+ i {
47
+ font-size: $button-font-size;
48
+ line-height: inherit;
49
+ }
50
+ }
51
+
52
+ // Raised Button
53
+ .btn {
54
+ text-decoration: none;
55
+ color: $button-raised-color;
56
+ background-color: $button-raised-background;
57
+ text-align: center;
58
+ letter-spacing: .5px;
59
+ @extend .z-depth-1;
60
+ transition: .2s ease-out;
61
+ cursor: pointer;
62
+
63
+ &:hover {
64
+ background-color: $button-raised-background-hover;
65
+ @extend .z-depth-1-half;
66
+ }
67
+ }
68
+
69
+ // Floating button
70
+ .btn-floating {
71
+ display: inline-block;
72
+ color: $button-floating-color;
73
+ position: relative;
74
+ overflow: hidden;
75
+ z-index: 1;
76
+ width: $button-floating-size;
77
+ height: $button-floating-size;
78
+ line-height: $button-floating-size;
79
+ padding: 0;
80
+ background-color: $button-floating-background;
81
+ border-radius: $button-floating-radius;
82
+ @extend .z-depth-1;
83
+ transition: .3s;
84
+ cursor: pointer;
85
+ vertical-align: middle;
86
+
87
+ i {
88
+ width: inherit;
89
+ display: inline-block;
90
+ text-align: center;
91
+ color: $button-floating-color;
92
+ font-size: $button-large-icon-font-size;
93
+ line-height: $button-floating-size;
94
+ }
95
+
96
+ &:hover {
97
+ background-color: $button-floating-background-hover;
98
+ @extend .z-depth-1-half;
99
+ }
100
+
101
+ &:before {
102
+ border-radius: 0;
103
+ }
104
+
105
+ &.btn-large {
106
+ width: $button-floating-large-size;
107
+ height: $button-floating-large-size;
108
+ i {
109
+ line-height: $button-floating-large-size;
110
+ }
111
+ }
112
+ }
113
+
114
+ // button fix
115
+ button.btn-floating {
116
+ border: $button-border;
117
+ }
118
+
119
+ // Fixed Action Button
120
+ .fixed-action-btn {
121
+ &.active {
122
+ ul {
123
+ visibility: visible;
124
+ }
125
+ }
126
+
127
+ &.horizontal {
128
+ padding: 0 0 0 15px;
129
+
130
+ ul {
131
+ text-align: right;
132
+ right: 64px;
133
+ top: 50%;
134
+ transform: translateY(-50%);
135
+ height: 100%;
136
+ left: auto;
137
+ width: 500px; /*width 100% only goes to width of button container */
138
+
139
+ li {
140
+ display: inline-block;
141
+ margin: 15px 15px 0 0;
142
+ }
143
+ }
144
+ }
145
+
146
+ position: fixed;
147
+ right: 23px;
148
+ bottom: 23px;
149
+ padding-top: 15px;
150
+ margin-bottom: 0;
151
+ z-index: 998;
152
+
153
+ ul {
154
+ left: 0;
155
+ right: 0;
156
+ text-align: center;
157
+ position: absolute;
158
+ bottom: 64px;
159
+ margin: 0;
160
+ visibility: hidden;
161
+
162
+ li {
163
+ margin-bottom: 15px;
164
+ }
165
+
166
+ a.btn-floating {
167
+ opacity: 0;
168
+ }
169
+ }
170
+ }
171
+
172
+ // Flat button
173
+ .btn-flat {
174
+ box-shadow: none;
175
+ background-color: transparent;
176
+ color: $button-flat-color;
177
+ cursor: pointer;
178
+
179
+ &.disabled {
180
+ color: $button-flat-disabled-color;
181
+ cursor: default;
182
+ }
183
+ }
184
+
185
+ // Large button
186
+ .btn-large {
187
+ @extend .btn;
188
+ height: $button-large-height;
189
+ line-height: $button-large-height;
190
+
191
+ i {
192
+ font-size: $button-large-icon-font-size;
193
+ }
194
+ }
195
+
196
+ // Block button
197
+ .btn-block {
198
+ display: block;
199
+ }
@@ -0,0 +1,412 @@
1
+ // Utility Color Classes
2
+
3
+ //.success {
4
+ //
5
+ //}
6
+
7
+ // Google Color Palette defined: http://www.google.com/design/spec/style/color.html
8
+
9
+
10
+ $materialize-red: (
11
+ "base": #e51c23,
12
+ "lighten-5": #fdeaeb,
13
+ "lighten-4": #f8c1c3,
14
+ "lighten-3": #f3989b,
15
+ "lighten-2": #ee6e73,
16
+ "lighten-1": #ea454b,
17
+ "darken-1": #d0181e,
18
+ "darken-2": #b9151b,
19
+ "darken-3": #a21318,
20
+ "darken-4": #8b1014,
21
+ );
22
+
23
+ $red: (
24
+ "base": #F44336,
25
+ "lighten-5": #FFEBEE,
26
+ "lighten-4": #FFCDD2,
27
+ "lighten-3": #EF9A9A,
28
+ "lighten-2": #E57373,
29
+ "lighten-1": #EF5350,
30
+ "darken-1": #E53935,
31
+ "darken-2": #D32F2F,
32
+ "darken-3": #C62828,
33
+ "darken-4": #B71C1C,
34
+ "accent-1": #FF8A80,
35
+ "accent-2": #FF5252,
36
+ "accent-3": #FF1744,
37
+ "accent-4": #D50000
38
+ );
39
+
40
+ $pink: (
41
+ "base": #e91e63,
42
+ "lighten-5": #fce4ec,
43
+ "lighten-4": #f8bbd0,
44
+ "lighten-3": #f48fb1,
45
+ "lighten-2": #f06292,
46
+ "lighten-1": #ec407a,
47
+ "darken-1": #d81b60,
48
+ "darken-2": #c2185b,
49
+ "darken-3": #ad1457,
50
+ "darken-4": #880e4f,
51
+ "accent-1": #ff80ab,
52
+ "accent-2": #ff4081,
53
+ "accent-3": #f50057,
54
+ "accent-4": #c51162
55
+ );
56
+
57
+ $purple: (
58
+ "base": #9c27b0,
59
+ "lighten-5": #f3e5f5,
60
+ "lighten-4": #e1bee7,
61
+ "lighten-3": #ce93d8,
62
+ "lighten-2": #ba68c8,
63
+ "lighten-1": #ab47bc,
64
+ "darken-1": #8e24aa,
65
+ "darken-2": #7b1fa2,
66
+ "darken-3": #6a1b9a,
67
+ "darken-4": #4a148c,
68
+ "accent-1": #ea80fc,
69
+ "accent-2": #e040fb,
70
+ "accent-3": #d500f9,
71
+ "accent-4": #aa00ff
72
+ );
73
+
74
+ $deep-purple: (
75
+ "base": #673ab7,
76
+ "lighten-5": #ede7f6,
77
+ "lighten-4": #d1c4e9,
78
+ "lighten-3": #b39ddb,
79
+ "lighten-2": #9575cd,
80
+ "lighten-1": #7e57c2,
81
+ "darken-1": #5e35b1,
82
+ "darken-2": #512da8,
83
+ "darken-3": #4527a0,
84
+ "darken-4": #311b92,
85
+ "accent-1": #b388ff,
86
+ "accent-2": #7c4dff,
87
+ "accent-3": #651fff,
88
+ "accent-4": #6200ea
89
+ );
90
+
91
+ $indigo: (
92
+ "base": #3f51b5,
93
+ "lighten-5": #e8eaf6,
94
+ "lighten-4": #c5cae9,
95
+ "lighten-3": #9fa8da,
96
+ "lighten-2": #7986cb,
97
+ "lighten-1": #5c6bc0,
98
+ "darken-1": #3949ab,
99
+ "darken-2": #303f9f,
100
+ "darken-3": #283593,
101
+ "darken-4": #1a237e,
102
+ "accent-1": #8c9eff,
103
+ "accent-2": #536dfe,
104
+ "accent-3": #3d5afe,
105
+ "accent-4": #304ffe
106
+ );
107
+
108
+ $blue: (
109
+ "base": #2196F3,
110
+ "lighten-5": #E3F2FD,
111
+ "lighten-4": #BBDEFB,
112
+ "lighten-3": #90CAF9,
113
+ "lighten-2": #64B5F6,
114
+ "lighten-1": #42A5F5,
115
+ "darken-1": #1E88E5,
116
+ "darken-2": #1976D2,
117
+ "darken-3": #1565C0,
118
+ "darken-4": #0D47A1,
119
+ "accent-1": #82B1FF,
120
+ "accent-2": #448AFF,
121
+ "accent-3": #2979FF,
122
+ "accent-4": #2962FF
123
+ );
124
+
125
+ $light-blue: (
126
+ "base": #03a9f4,
127
+ "lighten-5": #e1f5fe,
128
+ "lighten-4": #b3e5fc,
129
+ "lighten-3": #81d4fa,
130
+ "lighten-2": #4fc3f7,
131
+ "lighten-1": #29b6f6,
132
+ "darken-1": #039be5,
133
+ "darken-2": #0288d1,
134
+ "darken-3": #0277bd,
135
+ "darken-4": #01579b,
136
+ "accent-1": #80d8ff,
137
+ "accent-2": #40c4ff,
138
+ "accent-3": #00b0ff,
139
+ "accent-4": #0091ea
140
+ );
141
+
142
+ $cyan: (
143
+ "base": #00bcd4,
144
+ "lighten-5": #e0f7fa,
145
+ "lighten-4": #b2ebf2,
146
+ "lighten-3": #80deea,
147
+ "lighten-2": #4dd0e1,
148
+ "lighten-1": #26c6da,
149
+ "darken-1": #00acc1,
150
+ "darken-2": #0097a7,
151
+ "darken-3": #00838f,
152
+ "darken-4": #006064,
153
+ "accent-1": #84ffff,
154
+ "accent-2": #18ffff,
155
+ "accent-3": #00e5ff,
156
+ "accent-4": #00b8d4
157
+ );
158
+
159
+ $teal: (
160
+ "base": #009688,
161
+ "lighten-5": #e0f2f1,
162
+ "lighten-4": #b2dfdb,
163
+ "lighten-3": #80cbc4,
164
+ "lighten-2": #4db6ac,
165
+ "lighten-1": #26a69a,
166
+ "darken-1": #00897b,
167
+ "darken-2": #00796b,
168
+ "darken-3": #00695c,
169
+ "darken-4": #004d40,
170
+ "accent-1": #a7ffeb,
171
+ "accent-2": #64ffda,
172
+ "accent-3": #1de9b6,
173
+ "accent-4": #00bfa5
174
+ );
175
+
176
+ $green: (
177
+ "base": #4CAF50,
178
+ "lighten-5": #E8F5E9,
179
+ "lighten-4": #C8E6C9,
180
+ "lighten-3": #A5D6A7,
181
+ "lighten-2": #81C784,
182
+ "lighten-1": #66BB6A,
183
+ "darken-1": #43A047,
184
+ "darken-2": #388E3C,
185
+ "darken-3": #2E7D32,
186
+ "darken-4": #1B5E20,
187
+ "accent-1": #B9F6CA,
188
+ "accent-2": #69F0AE,
189
+ "accent-3": #00E676,
190
+ "accent-4": #00C853
191
+ );
192
+
193
+ $light-green: (
194
+ "base": #8bc34a,
195
+ "lighten-5": #f1f8e9,
196
+ "lighten-4": #dcedc8,
197
+ "lighten-3": #c5e1a5,
198
+ "lighten-2": #aed581,
199
+ "lighten-1": #9ccc65,
200
+ "darken-1": #7cb342,
201
+ "darken-2": #689f38,
202
+ "darken-3": #558b2f,
203
+ "darken-4": #33691e,
204
+ "accent-1": #ccff90,
205
+ "accent-2": #b2ff59,
206
+ "accent-3": #76ff03,
207
+ "accent-4": #64dd17
208
+ );
209
+
210
+ $lime: (
211
+ "base": #cddc39,
212
+ "lighten-5": #f9fbe7,
213
+ "lighten-4": #f0f4c3,
214
+ "lighten-3": #e6ee9c,
215
+ "lighten-2": #dce775,
216
+ "lighten-1": #d4e157,
217
+ "darken-1": #c0ca33,
218
+ "darken-2": #afb42b,
219
+ "darken-3": #9e9d24,
220
+ "darken-4": #827717,
221
+ "accent-1": #f4ff81,
222
+ "accent-2": #eeff41,
223
+ "accent-3": #c6ff00,
224
+ "accent-4": #aeea00
225
+ );
226
+
227
+ $yellow: (
228
+ "base": #ffeb3b,
229
+ "lighten-5": #fffde7,
230
+ "lighten-4": #fff9c4,
231
+ "lighten-3": #fff59d,
232
+ "lighten-2": #fff176,
233
+ "lighten-1": #ffee58,
234
+ "darken-1": #fdd835,
235
+ "darken-2": #fbc02d,
236
+ "darken-3": #f9a825,
237
+ "darken-4": #f57f17,
238
+ "accent-1": #ffff8d,
239
+ "accent-2": #ffff00,
240
+ "accent-3": #ffea00,
241
+ "accent-4": #ffd600
242
+ );
243
+
244
+ $amber: (
245
+ "base": #ffc107,
246
+ "lighten-5": #fff8e1,
247
+ "lighten-4": #ffecb3,
248
+ "lighten-3": #ffe082,
249
+ "lighten-2": #ffd54f,
250
+ "lighten-1": #ffca28,
251
+ "darken-1": #ffb300,
252
+ "darken-2": #ffa000,
253
+ "darken-3": #ff8f00,
254
+ "darken-4": #ff6f00,
255
+ "accent-1": #ffe57f,
256
+ "accent-2": #ffd740,
257
+ "accent-3": #ffc400,
258
+ "accent-4": #ffab00
259
+ );
260
+
261
+ $orange: (
262
+ "base": #ff9800,
263
+ "lighten-5": #fff3e0,
264
+ "lighten-4": #ffe0b2,
265
+ "lighten-3": #ffcc80,
266
+ "lighten-2": #ffb74d,
267
+ "lighten-1": #ffa726,
268
+ "darken-1": #fb8c00,
269
+ "darken-2": #f57c00,
270
+ "darken-3": #ef6c00,
271
+ "darken-4": #e65100,
272
+ "accent-1": #ffd180,
273
+ "accent-2": #ffab40,
274
+ "accent-3": #ff9100,
275
+ "accent-4": #ff6d00
276
+ );
277
+
278
+ $deep-orange: (
279
+ "base": #ff5722,
280
+ "lighten-5": #fbe9e7,
281
+ "lighten-4": #ffccbc,
282
+ "lighten-3": #ffab91,
283
+ "lighten-2": #ff8a65,
284
+ "lighten-1": #ff7043,
285
+ "darken-1": #f4511e,
286
+ "darken-2": #e64a19,
287
+ "darken-3": #d84315,
288
+ "darken-4": #bf360c,
289
+ "accent-1": #ff9e80,
290
+ "accent-2": #ff6e40,
291
+ "accent-3": #ff3d00,
292
+ "accent-4": #dd2c00
293
+ );
294
+
295
+ $brown: (
296
+ "base": #795548,
297
+ "lighten-5": #efebe9,
298
+ "lighten-4": #d7ccc8,
299
+ "lighten-3": #bcaaa4,
300
+ "lighten-2": #a1887f,
301
+ "lighten-1": #8d6e63,
302
+ "darken-1": #6d4c41,
303
+ "darken-2": #5d4037,
304
+ "darken-3": #4e342e,
305
+ "darken-4": #3e2723
306
+ );
307
+
308
+ $blue-grey: (
309
+ "base": #607d8b,
310
+ "lighten-5": #eceff1,
311
+ "lighten-4": #cfd8dc,
312
+ "lighten-3": #b0bec5,
313
+ "lighten-2": #90a4ae,
314
+ "lighten-1": #78909c,
315
+ "darken-1": #546e7a,
316
+ "darken-2": #455a64,
317
+ "darken-3": #37474f,
318
+ "darken-4": #263238
319
+ );
320
+
321
+ $grey: (
322
+ "base": #9e9e9e,
323
+ "lighten-5": #fafafa,
324
+ "lighten-4": #f5f5f5,
325
+ "lighten-3": #eeeeee,
326
+ "lighten-2": #e0e0e0,
327
+ "lighten-1": #bdbdbd,
328
+ "darken-1": #757575,
329
+ "darken-2": #616161,
330
+ "darken-3": #424242,
331
+ "darken-4": #212121
332
+ );
333
+
334
+ $shades: (
335
+ "black": #000000,
336
+ "white": #FFFFFF,
337
+ "transparent": transparent
338
+ );
339
+
340
+ $colors: (
341
+ "materialize-red": $materialize-red,
342
+ "red": $red,
343
+ "pink": $pink,
344
+ "purple": $purple,
345
+ "deep-purple": $deep-purple,
346
+ "indigo": $indigo,
347
+ "blue": $blue,
348
+ "light-blue": $light-blue,
349
+ "cyan": $cyan,
350
+ "teal": $teal,
351
+ "green": $green,
352
+ "light-green": $light-green,
353
+ "lime": $lime,
354
+ "yellow": $yellow,
355
+ "amber": $amber,
356
+ "orange": $orange,
357
+ "deep-orange": $deep-orange,
358
+ "brown": $brown,
359
+ "blue-grey": $blue-grey,
360
+ "grey": $grey,
361
+ "shades": $shades
362
+ );
363
+
364
+
365
+ // Color Classes
366
+
367
+ @each $color_name, $color in $colors {
368
+ @each $color_type, $color_value in $color {
369
+ @if $color_type == "base" {
370
+ .#{$color_name} {
371
+ background-color: $color_value !important;
372
+ }
373
+ .#{$color_name}-text {
374
+ color: $color_value !important;
375
+ }
376
+ }
377
+ @else {
378
+ .#{$color_name}.#{$color_type} {
379
+ background-color: $color_value !important;
380
+ }
381
+ .#{$color_name}-text.text-#{$color_type} {
382
+ color: $color_value !important;
383
+ }
384
+ }
385
+ }
386
+ }
387
+
388
+ // Shade classes
389
+ @each $color, $color_value in $shades {
390
+ .#{$color} {
391
+ background-color: $color_value !important;
392
+ }
393
+ .#{$color}-text {
394
+ color: $color_value !important;
395
+ }
396
+ }
397
+
398
+
399
+ // usage: color("name_of_color", "type_of_color")
400
+ // to avoid to repeating map-get($colors, ...)
401
+
402
+ @function color($color, $type) {
403
+ @if map-has-key($colors, $color) {
404
+ $curr_color: map-get($colors, $color);
405
+ @if map-has-key($curr_color, $type) {
406
+ @return map-get($curr_color, $type);
407
+ }
408
+ }
409
+ @warn "Unknown `#{name}` in $colors.";
410
+ @return null;
411
+ }
412
+