blob: f3b04961e3c12daa718c21b4f5a22c3e41dbaac4 [file] [log] [blame]
Matteo Scandolo4208f112016-08-10 17:02:02 -07001@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;
Matteo Scandoloef969922016-08-11 13:49:12 -070031 color: $emph;
Matteo Scandolo4208f112016-08-10 17:02:02 -070032
33 .prompt {
34 color: $magenta;
35 }
36
Matteo Scandoloef969922016-08-11 13:49:12 -070037 .input {
38 color: $blue;
39 }
40
Matteo Scandolo4208f112016-08-10 17:02:02 -070041 .cursor {
42 color: $cyan;
43 }
44
45 .error {
46 color: $red;
47 }
48
49 #shell-view {
Matteo Scandolo4208f112016-08-10 17:02:02 -070050
51 >div>div{
52 color: $blue;
53 }
Matteo Scandoloef969922016-08-11 13:49:12 -070054
55 .jsonObject {
56 white-space: nowrap;
57 }
58
59 .jsonCollection {
60 >.jsonObject{
61 margin-left: 10px;
62 }
63 }
Matteo Scandolo4208f112016-08-10 17:02:02 -070064 }
65 }
66 }
67}