source: node_modules/react-syntax-highlighter/src/styles/hljs/gradient-light.js

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 2.6 KB
Line 
1export default {
2 "hljs": {
3 "display": "block",
4 "overflowX": "auto",
5 "padding": "0.5em",
6 "background": "linear-gradient(142deg, rgba(255,253,141,1) 0%, rgba(252,183,255,1) 35%, rgba(144,236,255,1) 100%)",
7 "color": "#250482"
8 },
9 "hljs-subtr": {
10 "color": "#01958B"
11 },
12 "hljs-doctag": {
13 "color": "#CB7200"
14 },
15 "hljs-meta": {
16 "color": "#CB7200"
17 },
18 "hljs-comment": {
19 "color": "#CB7200"
20 },
21 "hljs-quote": {
22 "color": "#CB7200",
23 "fontStyle": "italic"
24 },
25 "hljs-selector-tag": {
26 "color": "#07BD5F",
27 "fontWeight": "bold"
28 },
29 "hljs-selector-id": {
30 "color": "#07BD5F",
31 "fontWeight": "bold"
32 },
33 "hljs-template-tag": {
34 "color": "#07BD5F",
35 "fontWeight": "bold"
36 },
37 "hljs-regexp": {
38 "color": "#07BD5F"
39 },
40 "hljs-attr": {
41 "color": "#07BD5F"
42 },
43 "hljs-tag": {
44 "color": "#07BD5F"
45 },
46 "hljs-params": {
47 "color": "#43449F",
48 "fontWeight": "bold"
49 },
50 "hljs-selector-class": {
51 "color": "#43449F",
52 "fontWeight": "bold"
53 },
54 "hljs-bullet": {
55 "color": "#43449F"
56 },
57 "hljs-keyword": {
58 "color": "#7D2801",
59 "fontWeight": "bold"
60 },
61 "hljs-section": {
62 "color": "#7D2801",
63 "fontWeight": "bold"
64 },
65 "hljs-meta-keyword": {
66 "color": "#7D2801"
67 },
68 "hljs-symbol": {
69 "color": "#7D2801"
70 },
71 "hljs-type": {
72 "color": "#7D2801"
73 },
74 "hljs-addition": {
75 "color": "#296562"
76 },
77 "hljs-number": {
78 "color": "#7F0096"
79 },
80 "hljs-link": {
81 "color": "#7F0096"
82 },
83 "hljs-string": {
84 "color": "#38c0ff"
85 },
86 "hljs-attribute": {
87 "color": "#296562"
88 },
89 "hljs-variable": {
90 "color": "#025C8F"
91 },
92 "hljs-template-variable": {
93 "color": "#025C8F"
94 },
95 "hljs-builtin-name": {
96 "color": "#529117"
97 },
98 "hljs-built_in": {
99 "color": "#529117"
100 },
101 "hljs-formula": {
102 "color": "#529117"
103 },
104 "hljs-name": {
105 "color": "#529117"
106 },
107 "hljs-title": {
108 "color": "#529117"
109 },
110 "hljs-class": {
111 "color": "#529117"
112 },
113 "hljs-function": {
114 "color": "#529117"
115 },
116 "hljs-selector-pseudo": {
117 "color": "#AD13FF"
118 },
119 "hljs-deletion": {
120 "color": "#AD13FF"
121 },
122 "hljs-literal": {
123 "color": "#AD13FF"
124 },
125 "hljs-emphasis": {
126 "fontStyle": "italic"
127 },
128 "hljs-strong": {
129 "fontWeight": "bold"
130 }
131}
Note: See TracBrowser for help on using the repository browser.