Skip to content

Commit 434f35d

Browse files
committed
added configuration section to README
1 parent 6d96aec commit 434f35d

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,26 @@ Or remove them entirely.
190190
...
191191
</div>
192192
```
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+
```
193213

194214
# Documentation
195215

0 commit comments

Comments
 (0)