-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
46 lines (37 loc) · 799 Bytes
/
style.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
$background-color: rgb(238, 238, 238);
$custom-red: rgb(182, 0, 0);
$custom-blue:rgb(0, 14, 136);
$custom-green:rgb(57, 160, 88);
$custom-grey: rgb(134, 134, 134);
@import url('https://fonts.googleapis.com/css?family=Slabo+27px&display=swap');
body{
background-color:$background-color;
font-size: 20px;
font-family: 'Slabo 27px', serif;
}
.wrapper{
white-space: pre;
margin:0 20px;
.crash{
color: $custom-red;
}
.identifier{
color: $custom-grey;
}
.identifier_ns{
color:$custom-blue;
font-weight: bold;
}
.identifier_class{
color: $custom-green;
}
.literal{
color: $custom-blue;
}
.keyword{
color: $custom-blue;
}
.symbol{
color:$custom-red;
}
}