-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (38 loc) · 1.11 KB
/
index.html
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
<!DOCTYPE html>
<html lang='ko'>
<head>
<meta charset='UTF-8' />
<link rel='icon' type='image/svg+xml' href='/vite.svg' />
<meta name='viewport' content='width=device-width, initial-scale=1.0' />
<link href='https://cdn.jsdelivr.net/npm/[email protected]/dist/full.css' rel='stylesheet' type='text/css' />
<script src='https://cdn.tailwindcss.com'></script>
<link rel='stylesheet' href='src/index.css'>
<title>Vite + React</title>
<script>
tailwindConfig = {
content: [
"./index.html",
"./src/**/*.{js,jsx}",
],
theme : {
extend: {
color: {
bgdark: '#f5f5f5',
bgdefault: '#fdfffd',
bggrey: '#d1d1d1',
bgtext: '#22243b',
bgaccent: '#f16e03',
bgwhite: '#fefefe',
}
}
},
plugins: [('diasyUi')],
}
</script>
</head>
<body>
<div id='root' class='w-full h-[60%] max-w-[800px] bg-[#f5f5f5] overflow-y-auto overflow-x-hidden rounded-[1rem] flex flex-col
drop-shadow-xl accent-[#f16e03]'></div>
<script type='module' src='/src/main.jsx'></script>
</body>
</html>