forked from mbti-dle/nyant-coin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
49 lines (47 loc) · 1.33 KB
/
tailwind.config.ts
File metadata and controls
49 lines (47 loc) · 1.33 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
import type { Config } from 'tailwindcss'
const config: Config = {
future: {
hoverOnlyWhenSupported: true,
},
content: [
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./lib/**/*.{js,ts,jsx,tsx,mdx}',
'./utils/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
primary: '#00076F',
navy: '#05075E',
blue: '#3369FF',
gold: '#FFB218',
black: '#282828',
white: '#FFFFFF',
red: '#FF4040',
gray: {
50: '#F9FAFB',
100: '#E3E3E3',
200: '#A1A1A1',
300: '#626262',
400: '#525F70',
500: '#545F71',
},
},
fontFamily: {
galmuri: ['var(--font-galmuri)', 'sans-serif'],
neodgm: ['var(--font-neodgm)', 'sans-serif'],
},
backgroundImage: {
'sky-desktop': "url('/images/background-desktop-1.png')",
'sky-mobile': "url('/images/background-mobile-1.png')",
'ocean-game-desktop': "url('/images/background-desktop-3.png')",
'ocean-game-mobile': "url('/images/background-mobile-3.png')",
'sea-spaceship-desktop': "url('/images/background-desktop-2.png')",
'sea-spaceship-mobile': "url('/images/background-mobile-2.png')",
},
},
},
plugins: [],
}
export default config