-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_solarized.scss
More file actions
33 lines (31 loc) · 858 Bytes
/
_solarized.scss
File metadata and controls
33 lines (31 loc) · 858 Bytes
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
/**
* Include this file early in your Sass project to
* get access to Solarized colors and functions.
*
* Adapted from the outstanding work by Ethan Schoonover:
* http://ethanschoonover.com/solarized
*/
$base03: rgb(0, 43, 54);
$base02: rgb(7, 54, 66);
$base01: rgb(88, 110, 117);
$base00: rgb(101, 123, 131);
$base0: rgb(131, 148, 150);
$base1: rgb(147, 161, 161);
$base2: rgb(238, 232, 213);
$base3: rgb(253, 246, 227);
$yellow: rgb(181, 137, 0);
$orange: rgb(203, 75, 22);
$red: rgb(220, 50, 47);
$magenta: rgb(211, 54, 130);
$violet: rgb(108, 113, 196);
$blue: rgb(38, 139, 210);
$cyan: rgb(42, 161, 152);
$green: rgb(133, 153, 0);
@mixin solarized-dark() {
background-color: $base03;
color: $base0;
}
@mixin solarized-light() {
background-color: $base3;
color: $base00;
}