-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mma.scss
57 lines (56 loc) · 1.02 KB
/
mma.scss
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
/*
* Copyright (c) 2016 rsmenon
* Licensed under the MIT License (https://opensource.org/licenses/MIT)
*/
$light-gray: rgb(153, 153, 153);
$dark-gray: rgb(102, 102, 102);
$black: #000;
$orange: #b66a4b;
$magenta: rgb(221, 17, 0);
$blue: rgb(0, 44, 195);
$cyan: #499A9F;
$green: rgb(67, 137, 88);
.highlight-wl .highlight,
.language-mathematica,
.language-mma,
.language-nb,
.language-wl,
.language-wolfram,
.language-wolfram-language {
.c { // Comment
color: $light-gray;
font-style: italic;
}
.nb { // Builtins
color: $black;
}
.nf { // Slots
color: $green;
font-style: italic;
}
.nt { // Patterns
color: $green;
font-style: italic;
}
.nv { // Non-builtin symbols
color: $blue;
}
.o { // Operators
color: $black;
}
.p { // Groupings
color: $black;
}
.s { // Strings
color: $dark-gray;
}
.vc { // Local scope variables
color: $green;
}
.err { // Any unrecognized input that is not lexed correctly
color: $dark-gray;
}
* {
color: $black;
}
}