1 | /* |
---|
2 | Name: Panda Syntax |
---|
3 | Author: Siamak Mokhtari (http://github.com/siamak/) |
---|
4 | CodeMirror template by Siamak Mokhtari (https://github.com/siamak/atom-panda-syntax) |
---|
5 | */ |
---|
6 | .cm-s-panda-syntax { |
---|
7 | background: #292A2B; |
---|
8 | color: #E6E6E6; |
---|
9 | line-height: 1.5; |
---|
10 | font-family: 'Operator Mono', 'Source Sans Pro', Menlo, Monaco, Consolas, Courier New, monospace; |
---|
11 | } |
---|
12 | .cm-s-panda-syntax .CodeMirror-cursor { border-color: #ff2c6d; } |
---|
13 | .cm-s-panda-syntax .CodeMirror-activeline-background { |
---|
14 | background: rgba(99, 123, 156, 0.1); |
---|
15 | } |
---|
16 | .cm-s-panda-syntax .CodeMirror-selected { |
---|
17 | background: #FFF; |
---|
18 | } |
---|
19 | .cm-s-panda-syntax .cm-comment { |
---|
20 | font-style: italic; |
---|
21 | color: #676B79; |
---|
22 | } |
---|
23 | .cm-s-panda-syntax .cm-operator { |
---|
24 | color: #f3f3f3; |
---|
25 | } |
---|
26 | .cm-s-panda-syntax .cm-string { |
---|
27 | color: #19F9D8; |
---|
28 | } |
---|
29 | .cm-s-panda-syntax .cm-string-2 { |
---|
30 | color: #FFB86C; |
---|
31 | } |
---|
32 | |
---|
33 | .cm-s-panda-syntax .cm-tag { |
---|
34 | color: #ff2c6d; |
---|
35 | } |
---|
36 | .cm-s-panda-syntax .cm-meta { |
---|
37 | color: #b084eb; |
---|
38 | } |
---|
39 | |
---|
40 | .cm-s-panda-syntax .cm-number { |
---|
41 | color: #FFB86C; |
---|
42 | } |
---|
43 | .cm-s-panda-syntax .cm-atom { |
---|
44 | color: #ff2c6d; |
---|
45 | } |
---|
46 | .cm-s-panda-syntax .cm-keyword { |
---|
47 | color: #FF75B5; |
---|
48 | } |
---|
49 | .cm-s-panda-syntax .cm-variable { |
---|
50 | color: #ffb86c; |
---|
51 | } |
---|
52 | .cm-s-panda-syntax .cm-variable-2 { |
---|
53 | color: #ff9ac1; |
---|
54 | } |
---|
55 | .cm-s-panda-syntax .cm-variable-3 { |
---|
56 | color: #ff9ac1; |
---|
57 | } |
---|
58 | |
---|
59 | .cm-s-panda-syntax .cm-def { |
---|
60 | color: #e6e6e6; |
---|
61 | } |
---|
62 | .cm-s-panda-syntax .cm-property { |
---|
63 | color: #f3f3f3; |
---|
64 | } |
---|
65 | .cm-s-panda-syntax .cm-unit { |
---|
66 | color: #ffb86c; |
---|
67 | } |
---|
68 | |
---|
69 | .cm-s-panda-syntax .cm-attribute { |
---|
70 | color: #ffb86c; |
---|
71 | } |
---|
72 | |
---|
73 | .cm-s-panda-syntax .CodeMirror-matchingbracket { |
---|
74 | border-bottom: 1px dotted #19F9D8; |
---|
75 | padding-bottom: 2px; |
---|
76 | color: #e6e6e6; |
---|
77 | } |
---|
78 | .cm-s-panda-syntax .CodeMirror-gutters { |
---|
79 | background: #292a2b; |
---|
80 | border-right-color: rgba(255, 255, 255, 0.1); |
---|
81 | } |
---|
82 | .cm-s-panda-syntax .CodeMirror-linenumber { |
---|
83 | color: #e6e6e6; |
---|
84 | opacity: 0.6; |
---|
85 | } |
---|