We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d96aec commit 434f35dCopy full SHA for 434f35d
1 file changed
README.md
@@ -190,6 +190,26 @@ Or remove them entirely.
190
...
191
</div>
192
```
193
+# Configuration
194
+Griddle is built with CSS variables which means that you can easily configure Griddle whether or not you are using SCSS.
195
+
196
+To configure colors add the follow to the top of your projects CSS file.
197
198
+```css
199
+:root {
200
+ --primary: #016575;
201
+ --secondary: #03414b;
202
+ --tertiary: #003242;
203
+ --cta: #EB8A5E;
204
+ --white: #ffffff;
205
+ --black: #000000;
206
+ --grey: #ececec;
207
+ --success: #48C774;
208
+ --warning: #FFDD57;
209
+ --danger: #F14668;
210
+ --info: #3298DC;
211
+}
212
+```
213
214
# Documentation
215
0 commit comments