Created
July 28, 2017 03:43
-
-
Save abrhambas01/8cc64734faa2a069e3f7e946cc7fee96 to your computer and use it in GitHub Desktop.
Customized Style with laravel-mix and bulma css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Main scss file | |
// fonts | |
@import url('https://fonts.googleapis.com/css?family=Open+Sans|Roboto+Slab'); | |
@import "node_modules/bulma/sass/utilities/initial-variables.sass"; | |
@import 'var.scss'; | |
@import 'node_modules/bulma/bulma.sass'; | |
//var.scss | |
$edgewater : #c0dfd9 ; | |
$green-white: #E9ECE5; | |
$submarine: #b3c2bf ; | |
$tuatara : #3b3a36 ; | |
$half-baked : #89bdd3; | |
$french-rose : #ec407a; | |
$denim : #1565c0 ; | |
$body-background : $green-white ; | |
$primary : $denim ; | |
$primary-invert : #e3f2fd; | |
$family-serif : 'Roboto Slab', 'Open Sans' , 'serif' ; | |
$blue : $half-baked ; | |
$pink : $french-rose ; | |
$pink-invert : #fce4ec ; | |
$text : $tuatara; | |
$text-light : $green-white ; | |
$family-primary : $family-serif ; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment