-
Notifications
You must be signed in to change notification settings - Fork 0
/
Wannabe.scsscheme
58 lines (45 loc) · 1.3 KB
/
Wannabe.scsscheme
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
@name "Writerly - Wannabe";
@author "Alex Armstrong (@alehandrof)";
@import "colors/material-design";
@import "colors/desk";
@import "colors/writer_pro";
$yellow: $color-lime-900; // base0a
$orange: $color-deep-orange-900; //base09
$red: $color-red-700; // base08
$magenta: $color-pink-700; // base0f (wildcard)
$violet: $color-deep-purple-500; // base0f
$blue: $color-light-blue-700; // base0d
$cyan: $color-teal-500; //base0c
$green: $color-light-green-800; //base 0b
$black: $color-grey-1000;
$dark2: $color-grey-700;
$medium: $color-grey-500;
$light2: $color-grey-400;
$light1: $color-grey-300;
$white: $color-grey-0;
/*** Abstract Colors ***/
// General colors
$fg: $desk-fg; // $color-grey-900;
$bg: $desk-bg; // $color-grey-200;
$caret: $desk-primary; // $color-light-blue-400;
$error: $color-pink;
$gutter: $color-grey-300;
$selection: transparentize($caret, .85);
// Map to values
$warning: $yellow;
$danger: $red;
$info: $cyan; // a color related to the caret and the selection
$success: $green;
$link: $blue;
$link-alt: $violet;
// Core Selectors
$comment: $medium;
$constant: $violet;
$tag: $magenta;
$keyword: $magenta;
$storage: $magenta;
$string: $yellow;
$variable: $orange;
$entity: $green;
$support: $blue;
@import "components/better-base";