forked from anthonyshort/cappuccino.foam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cappuccino.css
executable file
·67 lines (55 loc) · 1.07 KB
/
Cappuccino.css
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
/*
@theme Cappuccino
@override-placeholders ruby, css, html, php
@author Anthony Short - Based on the Railcasts theme
Colors
- #ddd text
- #222 background
- #555 Dark grey (Comments)
- rgba(251, 199, 111, 1.00) Yellow
- rgba(112, 155, 190, 1.00) Blue
- rgba(164, 194, 97, 1.00) Red
*/
@base
{
color: #999;
background-color: #222;
insertion-point-color: #fff;
selection-background-color: #333;
}
tag,
source,
sourcecode,
css
{ spell-check: disabled; }
processing-instruction { color:#aeaeae; }
/* Yellow */
selector,
php builtin_function name
{ color: rgba(251, 199, 111, 1.00); }
/* Blue */
property-name,
tag,
variable
{ color: rgba(112, 155, 190, 1.00); }
/* Green */
property-value
{ color: rgba(164, 194, 97, 1.00); }
/* Red */
php php.begin *,
php keyword.modifier
{ color: rgba(251, 90, 90, 1.00); }
/* Orange */
keyword.important,
control
{ color: rgba(200, 121, 54, 1.00); }
/* Grey */
comment,
tag.doctype
{ color: #555; }
/* Light Grey */
php balanced
{ color: #999;}
/* Off-white */
string
{ color: rgba(164, 194, 97, 1.00); }