-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.ts
49 lines (48 loc) · 1.06 KB
/
tailwind.config.ts
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 = {
mode: 'jit',
content: ['./src/**/*.{js,ts,jsx,tsx,mdx}'],
theme: {
extend: {
fontFamily: {
cafe24: ['var(--font-cafe24)'],
sfpro: ['var(--font-sfpro)'],
},
fontSize: {
'8xl': '6rem',
'6xl': '3.75rem',
'5xl': '3rem',
'3xl': '1.875rem',
'2xl': '1.5rem',
xl: '1.25rem',
xs: '1.063rem', // fontsize : 17px
'2xs': '0.875rem', // 14px
'3xs': '0.75rem', // 12px
'4xs': '0.625rem', // 10px
},
colors: {
background: '#9CCEE8',
theme: {
background: '#9CCEE8',
font: '#251365',
},
primary: {
darkblue: '#133365',
gray: '#E5E5EA',
lightblue: '#5F9FC0',
darkgray: '#3A3A3C',
middlegray: '#565656',
comet: '#636366',
},
},
width: {
'360': '360px',
},
height: {
'640': '640px',
},
},
},
plugins: [],
};
export default config;