| Index: scss/_variables.scss |
| =================================================================== |
| new file mode 100644 |
| --- /dev/null |
| +++ b/scss/_variables.scss |
| @@ -0,0 +1,91 @@ |
| +/*! |
| + * This file is part of website-defaults |
| + * Copyright (C) 2016 Eyeo GmbH |
| + * |
| + * website-defaults is free software: you can redistribute it and/or |
| + * modify it under the terms of the GNU General Public License as published by |
| + * the Free Software Foundation, either version 3 of the License, or |
| + * (at your option) any later version. |
| + * |
| + * website-defaults is distributed in the hope that it will be useful, |
| + * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| + * GNU General Public License for more details. |
| + * |
| + * You should have received a copy of the GNU General Public License |
| + * along with website-defaults. If not, see <http://www.gnu.org/licenses/>. |
| + */ |
| + |
| +/******************************************************************************* |
| + * Variables |
| + ******************************************************************************* |
| + * ~ WARNING ~ DO NOT EDIT THIS FILE! |
| + * Set variables within project specfic SCSS before including website defaults. |
| + ******************************************************************************* |
| + * - Brand colors |
| + * - Fonts |
| + * - Spacing |
| + * - Breakpoints |
| + ******************************************************************************/ |
| + |
| +/* Brand colors |
|
juliandoucette
2016/11/29 16:43:11
Note.
I made $primary-light lighter and $secondar
|
| + ******************************************************************************/ |
| + |
| +/* Primary - The most widely used across all screens and components. */ |
| + |
| +$primary: #212121 !default; |
| +$primary-light: #fff !default; |
| +$primary-dark: #000 !default; |
| + |
| +/* Secondary - Used to indicate a related action or information. */ |
| + |
| +$secondary: #9e9e9e !default; |
| +$secondary-light: #eee !default; |
| +$secondary-dark: #424242 !default; |
| + |
| +/* Accent - Used for action buttons and interactive elements. */ |
| + |
| +$accent: #1565c0 !default; |
| +$accent-light: #e3f2fd !default; |
| +$accent-dark: #0d47a1 !default; |
| + |
| +/* Error - Used for error messages and warnings. */ |
| + |
| +$error: #f44336 !default; |
| +$error-light: #ffebee !default; |
| +$error-dark: #b71c1c !default; |
| + |
| +/* Fonts |
| + ******************************************************************************/ |
| + |
| +$primary-font: sans-serif !default; |
| +$secondary-font: serif !default; |
| +$monospace-font: monospace !default; |
| + |
| +$large-font: 20px !default; |
| +$medium-font: 16px !default; |
| +$small-font: 12px !default; |
| + |
| +$bold-weight: 600 !default; |
| +$normal-weight: 400 !default; |
| +$thin-weight: 300 !default; |
| + |
| +/* Spacing |
| + ******************************************************************************/ |
| + |
| +$large-space: 64px !default; |
| +$medium-space: 32px !default; |
| +$small-space: 16px !default; |
| + |
| +/* Breakpoints |
| + ******************************************************************************/ |
| + |
| +$tablet-breakpoint: 768px; |
| +$desktop-breakpoint: 992px; |
| + |
| +/* Container widths |
| + ******************************************************************************/ |
| + |
| +$mobile-width: 540px !default; |
| +$tablet-width: 720px !default; |
| +$desktop-width: 960px !default; |