-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
52 lines (47 loc) · 1.59 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
50
51
52
/** @type {import('tailwindcss').Config} */
import type { Config } from 'tailwindcss';
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
colors: {
primary: '#753FEA',
primary5: '#F8F5FE',
primary10: '#F1ECFD',
primary20: '#E3D9FB',
primary40: '#C8B2F7',
primary60: '#AC8CF2',
primary80: '#9165EE',
secondary: '#232528',
secondary5: '#F4F4F4',
secondary10: '#E9E9E9',
secondary20: '#D3D3D4',
secondary40: '#A7A8A9',
secondary60: '#7B7C7E',
secondary80: '#4F5153',
error: '#FF3434',
black: '#000000',
black10: 'rgba(#000000, 0.1)',
white: '#FFFFFF',
mercury: '#E8E6DE',
desertStorm: '#F8F8F5',
turquoise: '#46DAFF',
earthBlue: '#000094',
artyClickCoolMagenta: '#B900FF',
artyClickCoolMagenta10: 'rgba(185, 0, 255, 0.1)',
mirage5: 'rgba(16, 24, 40, 0.05)',
davyGrey: '#565655',
platinum: '#E5E5E1',
dawnPink: '#ECECEC',
cinder: '#151515',
cinder10: 'rgba(#151515, 0.1)',
seashell: '#F1F1F1',
},
},
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
serif: ['Inter', 'serif'],
},
plugins: [],
} satisfies Config;