|
1 | | -$font-family-base: 'Josefin Sans', sans-serif; |
2 | | - |
3 | | -$indent-xs: 5px; |
4 | | -$indent-s: 10px; |
5 | | -$indent-base: 15px; |
6 | | -$indent-l: 20px; |
7 | | -$indent-xl: 30px; |
8 | | - |
9 | | -$font-size-s: 12px; |
10 | | -$font-size-base: 14px; |
11 | | -$font-size-l: 16px; |
12 | | -$font-size-xl: 18px; |
13 | | -$font-size-xxl: 20px; |
14 | | - |
15 | | -$line-height-xs: 14px; |
16 | | -$line-height-s: 16px; |
17 | | -$line-height-base: 18px; |
18 | | -$line-height-l: 22px; |
19 | | - |
20 | | - |
21 | | -$color-white: #fff; |
22 | | -$color-dark: #303030; |
23 | | -$color-primary: #E61FB6; |
24 | | -$color-secondary: #08E1DE; |
25 | | -$color-secondary-dark: #149493; |
26 | | -$color-alternative: #AE9518; |
27 | | -$color-alternative-dark: #947E0D; |
28 | | -$color-typography: $color-dark; |
29 | | - |
30 | | -$action-default-color: $color-dark; |
31 | | -$action-default-border-radius: 25px; |
32 | | -$action-default-font-weight: 600; |
33 | | -$action-default-hover-border: $color-dark; |
34 | | -$action-default-hover-color: $color-dark; |
35 | | -$action-default-hover-bg: transparent; |
36 | | - |
37 | | -$action-primary-color: $color-white; |
38 | | -$action-primary-bg: $color-primary; |
39 | | -$action-primary-border: $color-primary; |
40 | | - |
41 | | -$action-secondary-color: $color-white; |
42 | | -$action-secondary-bg: $color-secondary; |
43 | | -$action-secondary-border: $color-secondary; |
| 1 | +/// Project variables |
| 2 | +/// @author Marcin Kwiatkowski <contact@frodigo.com> |
| 3 | +/// @group variables |
| 4 | + |
| 5 | +/// @prop {string} $font-family-base ['Josefin Sans', sans-serif] - base font family |
| 6 | +$font-family-base: 'Josefin Sans', sans-serif !default; |
| 7 | + |
| 8 | +/// @prop {string} $index-xs [5px] - extra small indent |
| 9 | +$indent-xs: 5px !default; |
| 10 | + |
| 11 | +/// @prop {string} $index-s [10px] - small indent |
| 12 | +$indent-s: 10px !default; |
| 13 | + |
| 14 | +/// @prop {string} $index-base [15px] - base indent |
| 15 | +$indent-base: 15px !default; |
| 16 | + |
| 17 | +/// @prop {string} $index-l [20px] - large indent |
| 18 | +$indent-l: 20px !default; |
| 19 | + |
| 20 | +/// @prop {string} $index-xl [30px] - extra large indent |
| 21 | +$indent-xl: 30px !default; |
| 22 | + |
| 23 | +/// @prop {string} $font-size-xs [10px] - extra small font size |
| 24 | +$font-size-xs: 10px !default; |
| 25 | + |
| 26 | +/// @prop {string} $font-size-s [12px] - small font size |
| 27 | +$font-size-s: 12px !default; |
| 28 | + |
| 29 | +/// @prop {string} $font-size-base [14px] - base font size |
| 30 | +$font-size-base: 14px !default; |
| 31 | + |
| 32 | +/// @prop {string} $font-size-l [16px] - large font size |
| 33 | +$font-size-l: 16px !default; |
| 34 | + |
| 35 | +/// @prop {string} $font-size-xl [18px] - extra large font size |
| 36 | +$font-size-xl: 18px !default; |
| 37 | + |
| 38 | +/// @prop {string} $font-size-xxl [20px] - xxl font size |
| 39 | +$font-size-xxl: 20px !default; |
| 40 | + |
| 41 | +/// @prop {string} $line-height-xs [10px] - extra small line-height |
| 42 | +$line-height-xs: 10px !default; |
| 43 | + |
| 44 | +/// @prop {string} $line-height-s [12px] - small line-height |
| 45 | +$line-height-s: 12px !default; |
| 46 | + |
| 47 | +/// @prop {string} $line-height-base [14px] - base line-height |
| 48 | +$line-height-base: 14px !default; |
| 49 | + |
| 50 | +/// @prop {string} $line-height-l [16px] - large line-height |
| 51 | +$line-height-l: 16px !default; |
| 52 | + |
| 53 | +/// @prop {string} $line-height-xl [18px] - extra large line-height |
| 54 | +$line-height-xl: 18px !default; |
| 55 | + |
| 56 | +/// @prop {string} $line-height-xxl [20px] - xxl line-height |
| 57 | +$line-height-xxl: 20px !default; |
| 58 | + |
| 59 | +/// @prop {string} $color-white [#fff] - white color |
| 60 | +$color-white: #fff !default; |
| 61 | + |
| 62 | +/// @prop {string} $color-dark [#303030] - dark color |
| 63 | +$color-dark: #303030 !default; |
| 64 | + |
| 65 | +/// @prop {string} $color-primary [#E61FB6] - primary color |
| 66 | +$color-primary: #E61FB6 !default; |
| 67 | + |
| 68 | +/// @prop {string} $color-secondary [#08E1DE] - secondary color |
| 69 | +$color-secondary: #08E1DE !default; |
| 70 | + |
| 71 | +/// @prop {string} $color-secondary-dark [#149493] - secondary dark color |
| 72 | +$color-secondary-dark: #149493 !default; |
| 73 | + |
| 74 | +/// @prop {string} $color-alternative [#AE9518] - alternative color |
| 75 | +$color-alternative: #AE9518 !default; |
| 76 | + |
| 77 | +/// @prop {string} $color-alternative-dark [#947E0D] - alternative dark color |
| 78 | +$color-alternative-dark: #947E0D !default; |
| 79 | + |
| 80 | +/// @prop {string} $color-typography [$color-dark] - default typography color |
| 81 | +$color-typography: $color-dark !default; |
| 82 | + |
| 83 | +/// @prop {string} $action-default-color [$color-dark] - default action font color |
| 84 | +$action-default-color: $color-dark !default; |
| 85 | + |
| 86 | +/// @prop {string} $action-default-border-radius [25px] - default action border radius |
| 87 | +$action-default-border-radius: 25px !default; |
| 88 | + |
| 89 | +/// @prop {number} $action-default-font-weight [600] - default action font weight |
| 90 | +$action-default-font-weight: 600 !default; |
| 91 | + |
| 92 | +/// @prop {string} $action-default-hover-border [$color-dark] - default action border color on hover |
| 93 | +$action-default-hover-border: $color-dark !default; |
| 94 | + |
| 95 | +/// @prop {string} $action-default-hover-color [$color-dark] - default action font color on hover |
| 96 | +$action-default-hover-color: $color-dark !default; |
| 97 | + |
| 98 | +/// @prop {string} $action-default-hover-bg [transparent] - default action background color on hover |
| 99 | +$action-default-hover-bg: transparent !default; |
| 100 | + |
| 101 | +/// @prop {string} $action-primary-color [$color-white] - primary action font color |
| 102 | +$action-primary-color: $color-white !default; |
| 103 | + |
| 104 | +/// @prop {string} $action-primary-bg [$color-primary] - primary action background color |
| 105 | +$action-primary-bg: $color-primary !default; |
| 106 | + |
| 107 | +/// @prop {string} $action-primary-border [$action-primary-border] - primary action border color |
| 108 | +$action-primary-border: $color-primary !default; |
| 109 | + |
| 110 | +/// @prop {string} $action-secondary-color [$color-white] - secondary action font color |
| 111 | +$action-secondary-color: $color-white !default; |
| 112 | + |
| 113 | +/// @prop {string} $action-secondary-bg [$color-secondary] - secondary action background color |
| 114 | +$action-secondary-bg: $color-secondary !default; |
| 115 | + |
| 116 | +/// @prop {string} $action-secondary-border [$color-secondary] - secondary action border color |
| 117 | +$action-secondary-border: $color-secondary !default; |
0 commit comments