first CSS tokenizer

This commit is contained in:
Fabian Jakobs 2010-04-16 17:22:22 +02:00
commit 8b110a3e70
7 changed files with 233 additions and 6 deletions

View file

@ -33,7 +33,7 @@
font-size: 12px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
box-sizing: border-box;
}
.layer {
@ -74,6 +74,18 @@
color: blue;
}
.line .buildin-constant {
color: rgb(88, 72, 246);
}
.line .library-constant {
color: rgb(6, 150, 14);
}
.line .buildin-function {
color: rgb(60, 76, 114);
}
.line .string {
color: rgb(3, 106, 7);
}