-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
87 lines (86 loc) · 2.11 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
75
76
77
78
79
80
81
82
83
84
85
86
87
// eslint-disable-next-line @typescript-eslint/no-var-requires
const colors = require('tailwindcss/colors');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,jsx,tsx}'],
safelist: [
{
pattern: /text-(lime|emerald|cyan|sky|indigo|violet|red|pink)-500/
}
],
theme: {
extend: {
colors: {
black: '#010101',
white: '#fffffe',
primary: colors.indigo,
secondary: {
50: '#eaf8f2',
100: '#d5f0e5',
200: '#abe2cb',
300: '#80d3b1',
400: '#56c597',
500: '#2cb67d',
600: '#239264',
700: '#1a6d4b',
800: '#124932',
900: '#092419'
},
dark: {
50: '#E9E9EA',
100: '#D3D4D4',
200: '#BDBEBF',
300: '#A7A8A9',
400: '#929394',
500: '#7C7D7F',
600: '#666769',
700: '#505154',
800: '#3C3F44',
900: '#242629'
},
darken: {
50: '#FCFCFD',
100: '#F7F7F8',
200: '#EEEEF1',
300: '#E1E1E5',
400: '#C8C8D0',
500: '#ACACB9',
600: '#808093',
700: '#4B4B58',
800: '#2C2C34',
900: '#16161A'
},
gray: {
50: '#f4f6f7',
100: '#eaecf0',
200: '#dfe3e8',
300: '#d4d9e0',
400: '#cad0d9',
500: '#bfc7d1',
600: '#b4bdc9',
700: '#a9b4c1',
800: '#9faaba',
900: '#94a1b2'
},
greyish: {
50: '#f1f1f2',
100: '#e3e3e5',
200: '#d5d6d8',
300: '#c7c8cb',
400: '#b9babf',
500: '#aaacb2',
600: '#9c9ea5',
700: '#8e9198',
800: '#80838b',
900: '#72757e'
}
},
fontFamily: {
display: ['var(--display-font)', 'monospace'],
body: ['var(--body-font)', 'sans-serif']
}
}
},
// eslint-disable-next-line global-require
plugins: [require('@tailwindcss/line-clamp'), require('@tailwindcss/typography')]
};