-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjush.css
More file actions
125 lines (121 loc) · 3.48 KB
/
jush.css
File metadata and controls
125 lines (121 loc) · 3.48 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
.jush {
--text-color: #000;
--bg-color: #fff;
--php-color: #003;
--string-color: green;
--string-plain-color: #009F00;
--keyword-color: navy;
--identifier-color: red;
--value-color: purple;
--number-color: #007F7F;
--attribute-color: teal;
--js-bg-color: #f0f0ff;
--css-bg-color: #ffffe0;
--php-bg-color: #fff0f0;
--php-sql-bg-color: #ffbbb0;
}
@media (prefers-color-scheme: dark) {
.jush {
--text-color: #ccc;
--bg-color: #111;
--php-color: #cc9;
--string-color: #e6e;
--string-plain-color: #e6e;
--keyword-color: #acf;
--identifier-color: #f88;
--value-color: #e6e;
--number-color: #0c0;
--attribute-color: #3cc;
--js-bg-color: #036;
--css-bg-color: #404000;
--php-bg-color: #520;
--php-sql-bg-color: #404000;
}
}
.jush {
color: var(--text-color);
}
.jush-htm_com, .jush-com, .jush-com_code, .jush-one, .jush-php_doc, .jush-php_com, .jush-php_one, .jush-js_one, .jush-js_doc {
color: gray;
}
.jush-php, .jush-php_new, .jush-php_fun {
color: var(--php-color);
background-color: var(--php-bg-color);
}
.jush-php_quo, .jush-quo, .jush-quo_one, .jush-php_eot, .jush-apo, .jush-sql_apo, .jush-sqlite_apo, .jush-sql_quo, .jush-sql_eot {
color: var(--string-color);
}
.jush-php_apo {
color: var(--string-plain-color);
}
.jush-php_quo_var, .jush-php_var, .jush-sql_var {
font-style: italic;
}
.jush-php_apo .jush-php_quo_var, .jush-php_apo .jush-php_var {
font-style: normal;
}
.jush-php_halt2 {
background-color: var(--bg-color);
color: var(--text-color);
}
.jush-tag_css, .jush-att_css .jush-att_quo, .jush-att_css .jush-att_apo, .jush-att_css .jush-att_val {
color: var(--text-color);
background-color: var(--css-bg-color);
}
.jush-tag_js, .jush-att_js .jush-att_quo, .jush-att_js .jush-att_apo, .jush-att_js .jush-att_val, .jush-css_js {
color: var(--text-color);
background-color: var(--js-bg-color);
}
.jush-tag, .jush-xml_tag {
color: var(--keyword-color);
}
.jush-att, .jush-xml_att, .jush-att_js, .jush-att_css, .jush-att_http {
color: var(--attribute-color);
}
.jush-att_quo, .jush-att_apo, .jush-att_val {
color: var(--value-color);
}
.jush-ent {
color: var(--value-color);
}
.jush-js_key, .jush-js_key .jush-quo, .jush-js_key .jush-apo {
color: var(--value-color);
}
.jush-js_reg {
color: var(--keyword-color);
}
.jush-php_sql .jush-php_quo, .jush-php_sql .jush-php_apo,
.jush-php_sqlite .jush-php_quo, .jush-php_sqlite .jush-php_apo,
.jush-php_pgsql .jush-php_quo, .jush-php_pgsql .jush-php_apo,
.jush-php_mssql .jush-php_quo, .jush-php_mssql .jush-php_apo,
.jush-php_oracle .jush-php_quo, .jush-php_oracle .jush-php_apo {
background-color: var(--php-sql-bg-color);
}
.jush-bac, .jush-php_bac, .jush-bra, .jush-mssql_bra, .jush-sqlite_quo {
color: var(--identifier-color);
}
.jush-num, .jush-clr {
color: var(--number-color);
}
.jush a {
color: var(--keyword-color);
}
.jush a.jush-help {
cursor: help;
}
.jush-sql a, .jush-sql_code a, .jush-sqlite a, .jush-pgsql a, .jush-mssql a, .jush-oracle a, .jush-simpledb a {
font-weight: bold;
}
.jush-php_sql .jush-php_quo a, .jush-php_sql .jush-php_apo a {
font-weight: normal;
}
.jush-tag a, .jush-att a, .jush-apo a, .jush-quo a, .jush-php_apo a, .jush-php_quo a, .jush-php_eot2 a {
color: inherit;
}
a.jush-custom:link, a.jush-custom:visited {
font-weight: normal;
color: inherit;
}
.jush p {
margin: 0;
}