| Index: scss/_variables.scss |
| =================================================================== |
| new file mode 100644 |
| --- /dev/null |
| +++ b/scss/_variables.scss |
| @@ -0,0 +1,86 @@ |
| +/*! |
| + * This file is part of universal-design-language |
| + * Copyright (C) 2016 Eyeo GmbH |
| + * |
| + * universal-design-language 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. |
| + * |
| + * universal-design-language 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 web.starter-kit. If not, see <http://www.gnu.org/licenses/>. |
| + */ |
| + |
| +/* colors |
| + ******************************************************************************/ |
| + |
| +$white: #fafafa; |
| +$gray-light: #e0e0e0; |
| +$gray: #9e9e9e; |
| +$gray-dark: #616161; |
| +$black: #212121; |
| + |
| +$red-light: #ffcdd2; |
| +$red: #f44336; |
| +$red-dark: #b71c1c; |
| + |
| +$green-light: #c8e6c9; |
| +$green: #4caf50; |
| +$green-dark: #1b5e20; |
| + |
| +$blue-light: #bbdefb; |
| +$blue: #2196f3; |
| +$blue-dark: #0d47a1; |
| + |
| +$primary: $white; |
| +$primary-foreground: $black; |
| +$primary-background: $white; |
| + |
| +$inverted: $black; |
| +$inverted-foreground: $white; |
| +$inverted-background: $black; |
| + |
| +$secondary: $gray-dark; |
| +$secondary-foreground: $gray-light; |
| +$secondary-background: $gray-dark; |
| + |
| +$accent: $blue; |
| +$accent-foreground: $white; |
| +$accent-background: $blue-dark; |
| + |
| +$error: $red; |
| +$error-foreground: $white; |
| +$error-background: $red-dark; |
| + |
| +/* font sizes |
| + ******************************************************************************/ |
| + |
| +$large-font: 18px; |
| +$medium-font: 16px; |
| +$small-font: 14px; |
| + |
| +/* font weights |
| + ******************************************************************************/ |
| + |
| +$bold-weight: 600; |
| +$normal-weight: 400; |
| +$thin-weight: 300; |
| + |
| +/* spacing |
| + ******************************************************************************/ |
| + |
| +$large-space: 48px; |
| +$medium-space: 24px; |
| +$small-space: 12px; |
| + |
| +/* breakpoints |
| + ******************************************************************************/ |
| + |
| +$mobile-breakpoint: 576px; |
| +$tablet-breakpoint: 768px; |
| +$desktop-breakpoint: 992px; |