diff options
Diffstat (limited to 'viewer/src/assets/scss/buefy.scss')
-rw-r--r-- | viewer/src/assets/scss/buefy.scss | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/viewer/src/assets/scss/buefy.scss b/viewer/src/assets/scss/buefy.scss new file mode 100644 index 0000000..5249899 --- /dev/null +++ b/viewer/src/assets/scss/buefy.scss | |||
@@ -0,0 +1,37 @@ | |||
1 | @import "~bulma/sass/utilities/initial-variables"; | ||
2 | @import "~bulma/sass/utilities/functions"; | ||
3 | // 1. Set your own initial variables and derived | ||
4 | // variables in _variables.scss | ||
5 | @import "buefy_variables"; | ||
6 | |||
7 | // 2. Setup your Custom Colors | ||
8 | $linkedin: #0077b5; | ||
9 | $linkedin-invert: findColorInvert($linkedin); | ||
10 | $twitter: #55acee; | ||
11 | $twitter-invert: findColorInvert($twitter); | ||
12 | $github: #333; | ||
13 | $github-invert: findColorInvert($github); | ||
14 | |||
15 | @import "~bulma/sass/utilities/derived-variables"; | ||
16 | |||
17 | // 3. Add new color variables to the color map. | ||
18 | $addColors: ( | ||
19 | "twitter": ( | ||
20 | $twitter, | ||
21 | $twitter-invert | ||
22 | ), | ||
23 | "linkedin": ( | ||
24 | $linkedin, | ||
25 | $linkedin-invert | ||
26 | ), | ||
27 | "github": ( | ||
28 | $github, | ||
29 | $github-invert | ||
30 | ) | ||
31 | ); | ||
32 | $colors: map-merge($colors, $addColors); | ||
33 | |||
34 | @import "~bulma"; | ||
35 | @import "~buefy/src/scss/buefy"; | ||
36 | |||
37 | // 4. Provide custom buefy overrides and site styles here | ||