-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
38 lines (38 loc) · 1010 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
transitionDuration: {
DEFAULT: '400ms',
},
extend: {
colors: {
txpink: '#DD62FD',
txpink2: '#9E46B4',
txblue: '#0AD0FF',
txblue2: '#08AACF',
accent1: '#0AD0FF',
accent2: '#DD62FD',
accent2light: '#E4A0F6',
gray: {
50: '#efefef',
100: '#e6e6e6', // -10
150: '#dddddd', // -10
200: '#d4d4d4', // -10
300: '#c1c1c1', // -20
400: '#a0a0a0', // -35
500: '#808080', // middle
600: '#616161', // +35
700: '#3e3e3e', // +20
800: '#2b2b2b', // +10
850: '#222222', // +10
900: '#191919', // +10
950: '#101010',
},
},
},
},
plugins: [],
}