-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththemes.js
More file actions
115 lines (114 loc) · 3.32 KB
/
themes.js
File metadata and controls
115 lines (114 loc) · 3.32 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
import { modern } from './themes/modern';
import { brutalist } from './themes/brutalist';
import { minimal } from './themes/minimal';
import { retro } from './themes/retro';
import { blueprint } from './themes/blueprint';
import { neon } from './themes/neon';
import { swiss } from './themes/swiss';
import { japanese } from './themes/japanese';
import { gameboy } from './themes/gameboy';
import { vaporwave } from './themes/vaporwave';
import { noir } from './themes/noir';
import { clay } from './themes/clay';
import { prismatic } from './themes/prismatic';
import { cyberpunk } from './themes/cyberpunk';
import { sketch } from './themes/sketch';
import { bauhaus } from './themes/bauhaus';
import { popart } from './themes/popart';
import { cod } from './themes/callofduty';
import { crtAmber } from './themes/crtAmber';
import { gta } from './themes/gta';
import { rich } from './themes/rich';
import { abstract } from './themes/abstract';
import { nature } from './themes/nature';
import { graphicNovel } from './themes/graphicNovel';
import { win95 } from './themes/win95';
import { minimalDark } from './themes/minimalDark';
import { gradient } from './themes/gradient';
import { comic } from './themes/comic';
import { cybernetic } from './themes/cybernetic';
import { neoBrutalist } from './themes/neoBrutalist';
import { quantumOverlay } from './themes/quantumOverlay';
import { terminalPro } from './themes/terminalPro';
import { neonVapor } from './themes/neonVapor';
import { cadTech } from './themes/cadTech';
import { retroDos } from './themes/retroDos';
import { darkMedieval } from './themes/darkMedieval';
import { tacticalMap } from './themes/tacticalMap';
import { modernEdge } from './themes/modernEdge';
import { auroraWave } from './themes/auroraWave';
import { newspaper } from './themes/newspaper';
import { postModern } from './themes/postModern';
import { topographic } from './themes/topographic';
import { starChart } from './themes/starChart';
import { sonarPing } from './themes/sonarPing';
import { macosGlass } from './themes/macosGlass';
import { aeroGlass } from './themes/aeroGlass';
import { circlesBg } from './themes/circlesBg';
import { cassetteJCard } from './themes/cassetteJCard';
import { modernNature } from './themes/modernNature';
import { splitFlap } from './themes/splitFlap';
import { passportStamp } from './themes/passportStamp';
import { vinylRecord } from './themes/vinylRecord';
import { hauteCouture } from './themes/hauteCouture';
import { missionControl } from './themes/missionControl';
import { etherealGlow } from './themes/etherealGlow';
import { boldMinimal } from './themes/boldMinimal';
export const themeRenderers = {
modern,
brutalist,
minimal,
retro,
blueprint,
neon,
swiss,
japanese,
gameboy,
vaporwave,
noir,
clay,
prismatic,
cyberpunk,
sketch,
bauhaus,
popart,
cod,
crtAmber,
gta,
rich,
abstract,
nature,
graphicNovel,
win95,
minimalDark,
gradient,
comic,
cybernetic,
neoBrutalist,
quantumOverlay,
terminalPro,
neonVapor,
cadTech,
retroDos,
darkMedieval,
tacticalMap,
modernEdge,
auroraWave,
newspaper,
postModern,
topographic,
starChart,
sonarPing,
macosGlass,
aeroGlass,
circlesBg,
cassetteJCard,
modernNature,
splitFlap,
passportStamp,
vinylRecord,
hauteCouture,
missionControl,
etherealGlow,
boldMinimal,
};