| 1 |
#color { |
| 2 |
color: #22ea18; |
| 3 |
red: 34; |
| 4 |
green: 234; |
| 5 |
blue: 24; |
| 6 |
color: rgba(1, 2, 4, 0.5); |
| 7 |
a1: 1; |
| 8 |
a2: 0.5; |
| 9 |
mix: #020304; |
| 10 |
rgba: rgba(170, 119, 204, 0.4); |
| 11 |
rgba: rgba(170, 119, 204, 0.4); } |
| 12 |
|
| 13 |
#hsl { |
| 14 |
color: #79c653; |
| 15 |
color: rgba(121, 198, 83, 0.5); |
| 16 |
hue: 100deg; |
| 17 |
sat: 50%; |
| 18 |
lig: 55%; } |
| 19 |
|
| 20 |
#more-color { |
| 21 |
light: #7e3d9e; |
| 22 |
dark: #432154; |
| 23 |
sat: #632782; |
| 24 |
desat: #5e3871; |
| 25 |
gray: #545454; |
| 26 |
comp: #48792f; |
| 27 |
inv: #9fd086; } |
| 28 |
|
| 29 |
#more-more-color { |
| 30 |
op: 0.5; |
| 31 |
opacify: rgba(1, 2, 3, 0.6); |
| 32 |
opacify: rgba(1, 2, 3, 0.6); |
| 33 |
transparentize: rgba(1, 2, 3, 0.4); |
| 34 |
transparentize: rgba(1, 2, 3, 0.4); |
| 35 |
transparentize: rgba(52, 130, 3, 0.9); } |
| 36 |
|
| 37 |
#more-more-more-color { |
| 38 |
color: rgba(65, 110, 79, 0.4); |
| 39 |
color: rgba(20, 255, 216, 0); |
| 40 |
color: rgba(55, 100, 69, 0.4); |
| 41 |
color: rgba(0, 255, 213, 0); |
| 42 |
color: rgba(145, 10, 10, 0); |
| 43 |
color: rgba(5, 10, 10, 0); |
| 44 |
color: rgba(145, 145, 145, 0); |
| 45 |
color: rgba(5, 5, 5, 0); |
| 46 |
color: #000A0A0A; |
| 47 |
color: #FFAABBCC; } |
| 48 |
|
| 49 |
#string { |
| 50 |
color: hello what is going on; |
| 51 |
color: "yeah"; |
| 52 |
color: "I do?"; } |
| 53 |
|
| 54 |
#number { |
| 55 |
color: 250%; |
| 56 |
color: 3; |
| 57 |
color: 3; |
| 58 |
color: 4; |
| 59 |
top: 10px; |
| 60 |
top: 1ex; |
| 61 |
width: 200%; |
| 62 |
bottom: 10px; |
| 63 |
padding: 3em 1in 96px 72pt; } |
| 64 |
|
| 65 |
#list { |
| 66 |
len: 3; |
| 67 |
len: 1; |
| 68 |
n: hello; |
| 69 |
hello: one, two, three, hello; |
| 70 |
hello: one, two, three, hello, world, what, is, going; |
| 71 |
hello: one, two, three, hello; |
| 72 |
index: 2; |
| 73 |
index: false; |
| 74 |
index: 3; |
| 75 |
index: 1; |
| 76 |
index: false; |
| 77 |
index: 1; |
| 78 |
index: false; |
| 79 |
index: 2; |
| 80 |
index: 2; |
| 81 |
index: 1; |
| 82 |
world: one, two, three, great, job; |
| 83 |
world: one, two, three, great job; |
| 84 |
cool: one two three great job; |
| 85 |
cool: great job one two three; |
| 86 |
zip: 1px solid, 2px dashed; |
| 87 |
zip: 1px solid red, 2px dashed green; } |
| 88 |
|
| 89 |
#introspection { |
| 90 |
t: number; |
| 91 |
t: string; |
| 92 |
t: string; |
| 93 |
t: bool; |
| 94 |
t: color; |
| 95 |
t: color; |
| 96 |
t: list; |
| 97 |
u: ""; |
| 98 |
u: "px"; |
| 99 |
u: "em"; |
| 100 |
l: true; |
| 101 |
l: false; |
| 102 |
c: true; |
| 103 |
c: false; |
| 104 |
c: true; |
| 105 |
c: true; |
| 106 |
c: false; |
| 107 |
c: true; } |
| 108 |
|
| 109 |
#if { |
| 110 |
color: yes; |
| 111 |
color: no; |
| 112 |
color: yes; |
| 113 |
color: yes; } |
| 114 |
|
| 115 |
.transparent { |
| 116 |
r: 0; |
| 117 |
g: 0; |
| 118 |
b: 0; |
| 119 |
a: 0; } |
| 120 |
|
| 121 |
.alpha { |
| 122 |
a: 1; |
| 123 |
a: 1; |
| 124 |
a: 1; |
| 125 |
a: 0.5; |
| 126 |
a: alpha(currentColor); } |
| 127 |
|