-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
74 lines (73 loc) · 1.56 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/* eslint-disable @typescript-eslint/no-var-requires */
const { fontFamily } = require('tailwindcss/defaultTheme')
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./src/components/chat/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
spacing: {
84: '21rem',
},
colors: {
b: {
100: '#BFCEFF',
200: '#90A9FF',
300: '#5E80F6',
400: '#3448FF',
500: '#0c2cdc',
600: '#0004a5',
},
bt: {
100: '#F5F6FF',
200: '#EDEFFF',
300: '#E1E4FF',
},
g: {
100: '#61E979',
},
l: {
100: '#ffaa85',
200: '#ff7658',
300: '#FC4F37',
400: '#c91812',
500: '#990101',
600: '#690000',
},
n: {
100: '#c2c6d2',
200: '#989ca7',
300: '#70747e',
400: '#4a4e57',
500: '#272b34',
600: '#010613',
},
p: {
100: '#ffcfff',
200: '#da9dfd',
300: '#AC73E7',
400: '#824DBD',
500: '#5a2895',
600: '#31006e',
},
y: {
100: '#f5e33e',
200: '#c7b902',
},
},
fontFamily: {
sans: ['Inter', ...fontFamily.sans],
mono: ['Inconsolata', ...fontFamily.mono],
},
fontSize: {
xs: '10px',
sm: '12px',
md: '14px',
lg: '16px',
xl: '20px',
},
},
},
plugins: [require('@tailwindcss/forms')],
}