Create colors.scss which sets all our color variables

This commit is contained in:
Matthias Loibl 2016-12-06 23:18:04 +01:00
parent d8a4fcfb41
commit 82bd9f9cd5
No known key found for this signature in database
GPG Key ID: B1C7DF661ABB2C1A
1 changed files with 14 additions and 0 deletions

14
src/colors.scss Normal file
View File

@ -0,0 +1,14 @@
//Palette generated by Material Palette
//materialpalette.com/light-green/orange
$primary-color-dark: #689F38;
$primary-color: #8BC34A;
$primary-color-light: #DCEDC8;
$primary-color-text: #212121;
$accent-color: #FF9800;
$primary-text-color: #212121;
$secondary-text-color: #757575;
$divider-color: #BDBDBD;
//Set bootstrap colors
$brand-primary: $primary-color;
$body-color: $primary-text-color;