-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtailwind.config.js
123 lines (116 loc) · 2.79 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
const colors = require('tailwindcss/colors')
module.exports = {
content: [
'./src/**/*.{html,js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
'logseq': {
50: '#b7d5d5',
100: '#8EC2C2',
200: '#2c7d8f',
300: '#266C7D',
400: '#195D6C',
500: '#094b5a',
600: '#023643',
700: '#002B36',
800: '#01222a',
900: '#01171d'
},
'pro': {
50: '#F5FEFB',
100: '#cde9ff',
200: '#A6E0FA',
300: '#7ECDF6',
400: '#3CBAF3',
500: '#0EA5E9',
600: '#0C8DC7',
700: '#0A75A6',
800: '#085D84',
900: '#064662'
}
},
fontSize: {
'4xl': '2.4rem',
'6xl': '4rem'
},
backdropBlur: {
'4xl': '80px',
'5xl': '100px'
},
backgroundImage: {
'radial': 'radial-gradient(var(--tw-gradient-stops))'
},
linearBorderGradients: ({ theme }) => ({
colors: {
'yellow-purple-red': [
colors.amber[400],
colors.purple[500],
colors.red[600]
],
'red-purple-blue': [
colors.fuchsia[400],
colors.purple[500],
colors.blue[600]
],
'yellow-brown-yellow': [
colors.yellow[400],
colors.stone[300],
colors.yellow[700]
],
'red-black-yellow': [
colors.fuchsia[500],
colors.stone[700],
colors.yellow[400]
],
'green-black-cyan': [
colors.green[500],
colors.stone[500],
colors.cyan[600]
],
'gray-white-gray': [
colors.stone[400],
colors.white,
colors.stone[600]
],
'purple-white-red': [
colors.red[300],
colors.white,
colors.purple[400]
],
'blue-white-green': [
colors.blue[400],
colors.white,
colors.green[200]
],
'yellow-white-orange': [
colors.yellow[200],
colors.white,
colors.orange[400]
],
'green-white-black': [
colors.green[500],
colors.white,
colors.yellow[100]
],
'brown-white-blue': [
colors.yellow[300],
colors.white,
colors.blue[400]
],
'gray-white-blue': [
colors.stone[500],
colors.white,
colors.yellow[900]
]
},
background: theme('colors'),
})
},
},
plugins: [
require('tailwindcss-animate'),
require('tailwindcss-border-gradient-radius')
],
}