-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
54 lines (54 loc) · 1.18 KB
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,jsx,ts,tsx}'],
theme: {
container: {
center: true,
},
extend: {
fontFamily: {
sans: ['Pretendard', 'sans-serif'],
},
colors: {
pri: {
900: '#ebf1ff',
800: '#bfd1ff',
700: '#92b1ff',
600: '#6691ff',
500: '#4679fc',
400: '#2d62ea',
300: '#1546c2',
200: '#00247e',
100: '#0833a0',
50: '#001a5c',
},
gray: {
900: '#fbfbfb',
800: '#f4f4f4',
700: '#e7e7e7',
600: '#cfcfcf',
500: '#aeaeae',
400: '#808080',
300: '#737373',
200: '#505050',
100: '#323232',
50: '#1d1d1d',
},
black: '#141212',
dim: '#282828',
white: '#ffffff',
error: '#df291d',
positive: '#1fb881',
},
fontSize: {
mainTitle: '1.75rem',
title: '1.5rem',
subTitle: '1.125rem',
bodyText: '1rem',
details: '.875rem',
smallestText: '.75rem',
},
plugins: [],
},
},
};