-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
64 lines (64 loc) · 1.45 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
},
colors: {
owned: {
primary: {
500: '#FB2576',
400: '#FD3B85',
300: '#FE5194',
200: '#FF67A3',
100: '#FF7DB2',
},
accent: {
500: '#3F0071',
400: '#4A0083',
300: '#550095',
200: '#6000A7',
100: '#6B00B9',
},
secondary: {
500: '#150050',
400: '#1D0066',
300: '#25007D',
200: '#2D0093',
100: '#3500AA',
},
dark: {
500: '#000000',
400: '#070707',
300: '#0D0D0D',
200: '#141414',
100: '#1B1B1B',
},
light: {
500: '#FFFFFF',
400: '#F2F2F2',
300: '#E5E5E5',
200: '#D8D8D8',
100: '#CCCCCC',
},
grey: {
500: '#999999',
400: '#8C8C8C',
300: '#808080',
200: '#737373',
100: '#666666',
},
},
},
},
plugins: [],
}