Last active
March 20, 2018 11:55
-
-
Save ScarletPonytail/393d2d2d10d47d3d7bf26453953c4a8a to your computer and use it in GitHub Desktop.
Sass - Variables
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
// Colours | |
$primary: #80CBC4; | |
$secondary: #663399; | |
$alt-01: #EF5350; | |
$alt-02: #81C784; | |
$black: #000000; | |
$white: #ffffff; | |
$grey: #757575; | |
// Padding | |
$padding: 15px; | |
// Fonts and Typography | |
$theme-font: 'Roboto', sans-serif; | |
$font-base: 16px; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment