|
|
@ -1,9 +1,56 @@ |
|
|
|
$primary-colour: #00A69C; |
|
|
|
$primary-accent: #83D01B; |
|
|
|
// Colors |
|
|
|
$color-brand: #00A69C; |
|
|
|
$color-brand-dark: darken($color-brand, 10%); |
|
|
|
$color-brand-darker: darken($color-brand, 20%); |
|
|
|
$color-brand-bright: lighten($color-brand, 10%); |
|
|
|
$color-brand-brighter: lighten($color-brand, 20%); |
|
|
|
|
|
|
|
$white-colour: #FFFFFF; |
|
|
|
$grey-colour: #E2E2E2; |
|
|
|
$text-colour: #757575; |
|
|
|
$color-secondary: #83D01B; |
|
|
|
$color-secondary-dark: darken($color-secondary, 10%); |
|
|
|
$color-secondary-darker: darken($color-secondary, 20%); |
|
|
|
$color-secondary-bright: lighten($color-secondary, 10%); |
|
|
|
$color-secondary-brighter: lighten($color-secondary, 20%); |
|
|
|
|
|
|
|
$grey-box-shadow: 10px 10px 20px #F2F2F2; |
|
|
|
$grey-box-border: 1px solid #DDDDDD; |
|
|
|
$color-background-dark: #333333; |
|
|
|
$color-background-darker: #000000; |
|
|
|
$color-background-bright: #EEEEEE; |
|
|
|
$color-background-brighter: #FFFFFF; |
|
|
|
|
|
|
|
$color-foreground-dark: #333333; |
|
|
|
$color-foreground-darker: #000000; |
|
|
|
$color-foreground-bright: #EEEEEE; |
|
|
|
$color-foreground-brighter: #FFFFFF; |
|
|
|
|
|
|
|
// Animations |
|
|
|
$animation-speed-default: .35s; |
|
|
|
$animation-speed-slow: .5s; |
|
|
|
$animation-speed-fast: .15s; |
|
|
|
|
|
|
|
// Fonts |
|
|
|
$font-weight-light: 200; |
|
|
|
$font-weight-semilight: 300; |
|
|
|
$font-weight-normal: 400; |
|
|
|
$font-weight-semibold: 600; |
|
|
|
$font-weight-bold: 700; |
|
|
|
|
|
|
|
$font-size-xs: .5rem; // 8px |
|
|
|
$font-size-s: .85rem; // 13.6px |
|
|
|
$font-size-m: 1rem; // 16px |
|
|
|
$font-size-l: 1.25rem; // 20px |
|
|
|
$font-size-xl: 1.5rem; // 24px |
|
|
|
|
|
|
|
// Medias |
|
|
|
$media-screen-xxs: 360px; |
|
|
|
$media-screen-xs: 640px; |
|
|
|
$media-screen-s: 768px; |
|
|
|
$media-screen-m: 1024px; |
|
|
|
$media-screen-l: 1280px; |
|
|
|
$media-screen-xl: 1440px; |
|
|
|
$media-screen-xxl: 1680px; |
|
|
|
$media-screen-xxxl: 1920px; |
|
|
|
|
|
|
|
// Margins |
|
|
|
$margin-center: 10vw; |
|
|
|
|
|
|
|
$medias: xxs, xs, s, m, l, xl, xxl, xxxl; |
|
|
|
$mediavalues: $media-screen-xxs, $media-screen-xs, $media-screen-s, $media-screen-m, $media-screen-l, $media-screen-xl, $media-screen-xxl, $media-screen-xxxl; |