-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy path_base.less
71 lines (55 loc) · 1.2 KB
/
_base.less
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
// Language syntax highlighting
// Mixins -----------------------------------
.punctuation-mixin() {
.syntax--punctuation,
.syntax--bracket,
.syntax--brace {
.uno-5();
}
.syntax--string .syntax--punctuation {
.duo-3();
}
}
// Default color -----------------------------------
// Will be used by all languages when no other scope is defined.
.syntax--source {
.uno-2();
}
// Uno hue -----------------------------------
.syntax--html.syntax--elements,
.syntax--entity,
.syntax--tag,
.syntax--function-call {
.uno-1();
}
.syntax--attribute-name,
.syntax--character.syntax--escape {
.uno-3();
}
.syntax--support {
.uno-4();
}
// Uno hue -----------------------------------
.syntax--variable {
.uno-3();
}
// Duo hue -----------------------------------
.syntax--string,
.syntax--constant,
.syntax--storage.syntax--type {
.duo-1();
}
.syntax--keyword,
.syntax--storage {
.duo-2();
}
// Punctuation -----------------------------------
.punctuation-mixin();
// Comments -----------------------------------
.syntax--comment {
.uno-4();
font-style: italic;
}
// Text styles -----------------------------------
.syntax--bold { font-weight: bold; }
.syntax--italic { font-style: italic; }