Skip to content

Commit fc0a665

Browse files
committed
update
1 parent b883381 commit fc0a665

File tree

1 file changed

+56
-1
lines changed

1 file changed

+56
-1
lines changed

vocs.config.ts

+56-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,62 @@ import { defineConfig } from 'vocs'
33
export default defineConfig({
44
basePath: '/portfolio',
55
theme: {
6-
colorScheme: 'dark'
6+
colorScheme: 'dark',
7+
variables: {
8+
color: {
9+
white: {light : 'rgba(255 255 255 / 100%)',dark : 'rgba(255 255 255 / 100%)'},
10+
black: {light : 'rgba(0 0 0 / 100%)', dark : 'rgba(0 0 0 / 100%)'},
11+
background: { light: '#232225', dark: '#232225'},
12+
background2: { light: '#2b292d', dark: '#2b292d' },
13+
background3: { light: '#2e2c31', dark: '#2e2c31'},
14+
background4: { light: '#323035', dark: '#323035'},
15+
background5: { light: '#3c393f', dark: '#3c393f' },
16+
backgroundAccent: {light : '#5b5bd6',dark : '#5b5bd6' },
17+
backgroundAccentHover: {light : '#5b5bd6', dark : '#5b5bd6' },
18+
backgroundAccentText: {light : 'rgba(255 255 255 / 100%)',dark : 'rgba(255 255 255 / 100%)' },
19+
backgroundBlueTint: {light : '#008ff519', dark : '#008ff519'},
20+
backgroundDark: {light : '#1e1d1f',dark : '#1e1d1f'},
21+
backgroundGreenTint: {light : '#00a43319',dark : '#00a43319'},
22+
backgroundGreenTint2: {light : '#00a83829',dark : '#00a83829'},
23+
backgroundIrisTint: {light : '#000bff19',dark : '#000bff19'},
24+
backgroundRedTint: {light : '#f3000d14',dark : '#f3000d14'},
25+
backgroundRedTint2: {light : '#ff000824',dark : '#ff000824'},
26+
backgroundYellowTint: {light : '#f4dd0016',dark : '#f4dd0016'},
27+
border: {light : '#3c393f',dark : '#3c393f'},
28+
border2: {light : '#6f6d78',dark : '#6f6d78'},
29+
borderAccent: {light : '#6e6ade',dark : '#6e6ade'},
30+
borderBlue: {light : '#009eff2a',dark : '#009eff2a'},
31+
borderGreen: {light : '#019c393b',dark : '#019c393b'},
32+
borderIris: {light : '#303374',dark : '#303374'},
33+
borderRed: {light : '#ff000824',dark : '#ff000824'},
34+
borderYellow: {light : '#f4dd0016',dark : '#f4dd0016'},
35+
heading: {light : '#e9e9ea',dark : '#e9e9ea'},
36+
inverted: {light : 'rgba(255 255 255 / 100%)',dark : 'rgba(255 255 255 / 100%)'},
37+
shadow: {light : '#00000000',dark : '#00000000'},
38+
shadow2: {light : 'rgba(0, 0, 0, 0.05)',dark : 'rgba(0, 0, 0, 0.05)'},
39+
text: { light : '#cfcfcf',dark : '#cfcfcf'},
40+
text2: {light : '#bdbdbe',dark : '#bdbdbe'},
41+
text3: {light : '#a7a7a8',dark : '#a7a7a8'},
42+
text4: {light : '#656567', dark : '#656567'},
43+
textAccent: {light : '#b1a9ff', dark : '#b1a9ff'},
44+
textAccentHover: {light : '#6e6ade', dark : '#6e6ade'},
45+
textBlue: {light : '#70b8ff', dark : '#70b8ff'},
46+
textBlueHover: {light : '#3b9eff', dark : '#3b9eff'},
47+
textGreen: {light : '#3dd68c', dark : '#3dd68c'},
48+
textGreenHover: {light : '#33b074', dark : '#33b074'},
49+
textIris: {light : '#b1a9ff', dark : '#b1a9ff'},
50+
textIrisHover: {light : '#6e6ade', dark : '#6e6ade'},
51+
textRed: {light : '#ff9592', dark : '#ff9592'},
52+
textRedHover: {light : '#ec5d5e', dark : '#ec5d5e'},
53+
textYellow: {light : '#f5e147', dark : '#f5e147'},
54+
textYellowHover: {light : '#e2a336', dark : '#e2a336'},
55+
title: {light : 'rgba(255 255 255 / 100%)', dark : 'rgba(255 255 255 / 100%)'},
56+
},
57+
content: {
58+
horizontalPadding: '40px',
59+
verticalPadding: '80px'
60+
}
61+
}
762
},
863
title: 'Home',
964
topNav: [

0 commit comments

Comments
 (0)