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; |
Matteo Scandolo | ef96992 | 2016-08-11 13:49:12 -0700 | [diff] [blame] | 31 | color: $emph; |
Matteo Scandolo | 4208f11 | 2016-08-10 17:02:02 -0700 | [diff] [blame] | 32 | |
| 33 | .prompt { |
| 34 | color: $magenta; |
| 35 | } |
| 36 | |
Matteo Scandolo | ef96992 | 2016-08-11 13:49:12 -0700 | [diff] [blame] | 37 | .input { |
| 38 | color: $blue; |
| 39 | } |
| 40 | |
Matteo Scandolo | 4208f11 | 2016-08-10 17:02:02 -0700 | [diff] [blame] | 41 | .cursor { |
| 42 | color: $cyan; |
| 43 | } |
| 44 | |
| 45 | .error { |
| 46 | color: $red; |
| 47 | } |
| 48 | |
| 49 | #shell-view { |
Matteo Scandolo | 4208f11 | 2016-08-10 17:02:02 -0700 | [diff] [blame] | 50 | |
| 51 | >div>div{ |
| 52 | color: $blue; |
| 53 | } |
Matteo Scandolo | ef96992 | 2016-08-11 13:49:12 -0700 | [diff] [blame] | 54 | |
| 55 | .jsonObject { |
| 56 | white-space: nowrap; |
| 57 | } |
| 58 | |
| 59 | .jsonCollection { |
| 60 | >.jsonObject{ |
| 61 | margin-left: 10px; |
| 62 | } |
| 63 | } |
Matteo Scandolo | 4208f11 | 2016-08-10 17:02:02 -0700 | [diff] [blame] | 64 | } |
| 65 | } |
| 66 | } |
| 67 | } |