-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.scss
42 lines (38 loc) · 1.11 KB
/
variables.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Boilerplate: This file is appended to every SFC style block
// and used in my-styles to set up bulma and buefy appearance
// Import Bulma's utilities
@import '../../node_modules/bulma/sass/utilities/_all';
// Brand colors
$purple: #8A4D76;
$pink: #FA7C91;
$ultra-red: #FF6978;
$celeste: #B1EDE8;
$eggplant: #6D435A;
$brown: #757763;
$baby-powder: #FFFCF9;
$beige: #EFF0EB;
// To bulma vars
$family-sans-serif: "Nunito", sans-serif;
$widescreen-enabled: false;
$fullhd-enabled: false;
$primary: $purple;
$primary-invert: findColorInvert($purple);
$info: $pink;
$info-invert: findColorInvert($info);
$success: $celeste;
$success-invert: findColorInvert($success);
$warning: $eggplant;
$warning-invert: findColorInvert($warning);
$danger: $ultra-red;
$danger-invert: findColorInvert($danger);
$link: $primary;
$link-invert: $primary-invert;
$link-focus-border: $purple;
$myColors: (
'primary': ($primary, $primary-invert),
'info': ($info, $info-invert),
'success': ($success, $success-invert),
'warning': ($warning, $warning-invert),
'danger': ($danger, $danger-invert),
// you may add more here for `.is-<key>` classes
);