funky/_sass/theme.scss

25 lines
388 B
SCSS
Raw Normal View History

// Imports
@import "bourbon/bourbon";
@import "base/base";
// Theme variables
$color--background: #ffefc8;
$color--foreground: #150301;
$color--accent: #5277c3;
// Theme typography
html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
2016-06-13 21:03:09 +00:00
body {
color: $color--foreground;
background: $color--background;
}
a {
color: $color--accent;
2016-06-13 21:03:09 +00:00
}