forked from epam/ai-dial-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
77 lines (76 loc) · 2.7 KB
/
tailwind.config.js
File metadata and controls
77 lines (76 loc) · 2.7 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
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
75
76
77
// Do not use palette directly, only through semantic colors
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/app/**/*.{js,ts,jsx,tsx}',
'./src/pages/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
],
darkMode: 'class',
theme: {
colors: {
transparent: 'transparent',
green: 'rgb(var(--green, 55 186 188) / <alpha-value>)', // #37BABC
blue: {
500: 'rgb(var(--blue-500, 90 140 233) / <alpha-value>)', // #5A8CE9,
700: 'rgb(var(--blue-700, 72 120 210) / <alpha-value>)', // #4878D2
},
violet: 'rgb(var(--violet, 148 89 241) / <alpha-value>)', // #9459F1
gray: {
100: 'rgb(var(--gray-100, 252 252 252) / <alpha-value>)', // #FCFCFC, L3 (white)
200: 'rgb(var(--gray-200, 243 244 246) / <alpha-value>)', // #F3F4F6, L2 (white), text (dark)
300: 'rgb(var(--gray-300, 234 237 240) / <alpha-value>)', // #EAEDF0, L1 (white)
400: 'rgb(var(--gray-400, 221 225 230) / <alpha-value>)', // #DDE1E6, L4 (white), divider(white)
500: 'rgb(var(--gray-500, 127 135 146) / <alpha-value>)', // #7F8792, icons, sec text
600: 'rgb(var(--gray-600, 51 57 66) / <alpha-value>)', // #333942, L4 (dark)
700: 'rgb(var(--gray-700, 34 41 50) / <alpha-value>)', // #222932, L3 (dark), divider(black)
800: 'rgb(var(--gray-800, 20 26 35) / <alpha-value>)', // #141A23, L2 (dark), text(white)
900: 'rgb(var(--gray-900, 9 13 19) / <alpha-value>)', // #090D13, L1 (dark)
},
black: 'rgb(var(--black, 0 0 0) / <alpha-value>)', // #000000
red: {
200: 'rgb(var(--red-200, 243 214 216) / <alpha-value>)', // #F3D6D8, Error-bg
400: 'rgb(var(--red-400, 247 100 100) / <alpha-value>)', // #F76464, Error-text, error-stroke(dark)
800: 'rgb(var(--red-800, 174 47 47) / <alpha-value>)', // #AE2F2F, Error-text, error-stroke
900: 'rgb(var(--red-900, 64 32 39) / <alpha-value>)', // #402027, Error-bg (dark)
},
},
extend: {
screens: {
sm: '560px',
},
borderRadius: {
DEFAULT: '3px',
},
opacity: {
15: '15%',
},
boxShadow: {
DEFAULT: '0 0 4px 0 rgb(var(--gray-900, 9 13 19) / 15%)',
},
fontFamily: {
DEFAULT: ['var(--font-inter)'],
},
fontSize: {
xxs: '10px',
},
typography: {
DEFAULT: {
css: {
pre: {
border: 'none',
borderRadius: '0',
backgroundColor: 'transparent',
},
},
},
},
},
},
variants: {
extend: {
visibility: ['group-hover'],
},
},
plugins: [require('@tailwindcss/typography')],
};