_helpers.scss
2 years ago
_modals.scss
2 years ago
_notifications.scss
2 years ago
_variables.scss
2 years ago
_variables.scss
75 lines
| 1 | /* Colors */ |
| 2 | //green |
| 3 | $green-800: #005f4d; |
| 4 | $green-700: #007761; |
| 5 | $green-500: #00c7a2; |
| 6 | $green-400: #33d2b5; |
| 7 | $green-300: #3ff6d4; |
| 8 | $green-100: #b8fff2; |
| 9 | $green-50: #E9FFFB; |
| 10 | //purple |
| 11 | $purple-700: #4600cc; |
| 12 | $purple-500: #8240ff; |
| 13 | $purple-300: #b994ff; |
| 14 | $purple-100: #efe8ff; |
| 15 | $purple-50: #f7f3ff; |
| 16 | //gray |
| 17 | $gray-700: #1b004e; |
| 18 | $gray-600: #493371; |
| 19 | $gray-500: #776795; |
| 20 | $gray-300: #dbd7e3; |
| 21 | $gray-100: #f5f4f6; |
| 22 | //red |
| 23 | $red-800: #970928; |
| 24 | $red-600: #cf0c35; |
| 25 | $red-200: #f7d9df; |
| 26 | $red-100: #fbecef; |
| 27 | $red-50: #fdf2f2; |
| 28 | //blue |
| 29 | $blue-700: #1a56db; |
| 30 | $blue-200: #83bfffee; |
| 31 | $blue-100: #e1effe; |
| 32 | //yellow |
| 33 | $yellow-700: #987e00; |
| 34 | $yellow-500: #ffd400; |
| 35 | $yellow-200: #ffefa3; |
| 36 | $yellow-100: #fff8d7; |
| 37 | //assign |
| 38 | $primary-color: $purple-700; |
| 39 | $primary-hover: #3800a3; |
| 40 | $text-color: $gray-600; |
| 41 | $divider-color: #edebf1; |
| 42 | $toggle-color: #ada3bf; |
| 43 | $overlay-color: rgba(42, 0, 122, 0.5); |
| 44 | /* Typography */ |
| 45 | $font: "Inter", sans-serif; |
| 46 | $font-size: 0.875rem; |
| 47 | $line-height: 24px; |
| 48 | /* Box Shadow */ |
| 49 | $shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.08); |
| 50 | $toast-shadow: 0 4px 12px rgba(0,0,0,.1); |
| 51 | /* Borders */ |
| 52 | $border-radius: 4px; |
| 53 | /* layout */ |
| 54 | $gutter: 1.5rem; |
| 55 | $transition: ease-in-out 0.3s; |
| 56 | |
| 57 | @mixin btn() { |
| 58 | padding: 0.4rem 1.25rem; |
| 59 | border-radius: $border-radius; |
| 60 | border: 1px solid $primary-color; |
| 61 | color: $primary-color; |
| 62 | cursor: pointer; |
| 63 | transition: background-color $transition; |
| 64 | min-height: 2.25rem; |
| 65 | display: inline-block; |
| 66 | font-weight: 500; |
| 67 | text-wrap: nowrap; |
| 68 | text-decoration: none; |
| 69 | background: transparent; |
| 70 | } |
| 71 | @mixin btn_color($color) { |
| 72 | color: $color; |
| 73 | border-color: $color; |
| 74 | } |
| 75 |