Matteo Scandolo | 4208f11 | 2016-08-10 17:02:02 -0700 | [diff] [blame] | 1 | @import '../../../../style/sass/lib/_variables.scss'; |
2 | |||||
3 | // The solarized palette | ||||
4 | |||||
5 | $background: #002b36; | ||||
6 | $hl: #073642; | ||||
7 | $comment: #586e75; | ||||
8 | $foreground: #839496; | ||||
9 | $emph: #93a1a1; | ||||
10 | |||||
11 | $yellow: #b58900; | ||||
12 | $orange: #cb4b16; | ||||
13 | $red: #dc322f; | ||||
14 | $magenta: #d33682; | ||||
15 | $violet: #6c71c4; | ||||
16 | $blue: #268bd2; | ||||
17 | $cyan: #2aa198; | ||||
18 | $green: #859900; | ||||
19 | |||||
20 | #xosUITutorial { | ||||
21 | width: 100%; | ||||
22 | js-shell { | ||||
23 | display: block; | ||||
24 | |||||
25 | #shell-panel { | ||||
26 | width: 100%; | ||||
27 | height: 400px; | ||||
28 | background: $background; | ||||
29 | padding: 10px; | ||||
30 | overflow: scroll; | ||||
31 | |||||
32 | .prompt { | ||||
33 | color: $magenta; | ||||
34 | } | ||||
35 | |||||
36 | .cursor { | ||||
37 | color: $cyan; | ||||
38 | } | ||||
39 | |||||
40 | .error { | ||||
41 | color: $red; | ||||
42 | } | ||||
43 | |||||
44 | #shell-view { | ||||
45 | color: $emph; | ||||
46 | |||||
47 | >div>div{ | ||||
48 | color: $blue; | ||||
49 | } | ||||
50 | } | ||||
51 | } | ||||
52 | } | ||||
53 | } |