forked from leafo/scssphp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuiltins.css
More file actions
133 lines (122 loc) · 2.18 KB
/
builtins.css
File metadata and controls
133 lines (122 loc) · 2.18 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
126
127
128
129
130
131
132
133
#color {
color: #22ea18;
red: 34;
green: 234;
blue: 24;
color: rgba(1, 2, 4, 0.5);
a1: 1;
a2: 0.5;
mix: #020304;
rgba: rgba(170, 119, 204, 0.4);
rgba: rgba(170, 119, 204, 0.4);
green: 139; }
#hsl {
color: #79c653;
color: rgba(121, 198, 83, 0.5);
hue: 100deg;
sat: 50%;
lig: 55%; }
#more-color {
light: #7e3d9e;
dark: #432154;
sat: #632782;
desat: #5e3871;
gray: #545454;
comp: #48792f;
inv: #9fd086; }
#more-more-color {
op: 0.5;
opacify: rgba(1, 2, 3, 0.6);
opacify: rgba(1, 2, 3, 0.6);
transparentize: rgba(1, 2, 3, 0.4);
transparentize: rgba(1, 2, 3, 0.4);
transparentize: rgba(52, 130, 3, 0.9); }
#more-more-more-color {
color: rgba(65, 110, 79, 0.4);
color: rgba(20, 255, 216, 0);
color: rgba(55, 100, 69, 0.4);
color: rgba(0, 255, 213, 0);
color: rgba(145, 10, 10, 0);
color: rgba(5, 10, 10, 0);
color: rgba(145, 145, 145, 0);
color: rgba(5, 5, 5, 0);
color: #000A0A0A;
color: #FFAABBCC; }
#string {
color: hello what is going on;
color: "yeah";
color: "I do?";
color: 2;
color: sinserttring;
color: 6;
color: tri;
color: 'string';
color: STRING; }
#number {
color: 250%;
color: 3;
color: 3;
color: 4;
top: 10px;
top: 1ex;
width: 200%;
bottom: 10px;
padding: 3em 1in 96px 72pt; }
#list {
len: 3;
len: 1;
n: hello;
hello: one, two, three, hello;
hello: one, two, three, hello, world, what, is, going;
hello: one, two, three, hello;
index: 2;
index: false;
index: 3;
index: 1;
index: false;
index: 1;
index: false;
index: 2;
index: 2;
index: 1;
world: one, two, three, great, job;
world: one, two, three, great job;
cool: one two three great job;
cool: great job one two three;
zip: 1px solid, 2px dashed;
zip: 1px solid red, 2px dashed green; }
#introspection {
t: number;
t: string;
t: string;
t: bool;
t: color;
t: color;
t: list;
u: "";
u: "px";
u: "em";
l: true;
l: false;
c: true;
c: false;
c: true;
c: true;
c: false;
c: true; }
#if {
color: yes;
color: no;
color: yes;
color: yes; }
.transparent {
r: 0;
g: 0;
b: 0;
a: 0; }
.alpha {
a: 1;
a: 1;
a: 1;
a: 0.5;
a: alpha(currentColor); }