-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
42 lines (41 loc) · 1.09 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/**/*.{js,ts,vue}'],
theme: {
extend: {
colors: {
primary: '#201e2d',
secondary: '#2a2839',
tertiary: '#12111B',
accent: '#e47373',
'primary-t': '#cbd5e1',
'secondary-t': '#A29CDE',
'tertiary-t': '#5a567c',
'like': '#d95353',
'comment': '#74c48b',
'repost': '#784c9e',
},
screens: {
smd: '880px',
sm: '640px',
xs: '560px',
'2xs': '425px'
},
transitionProperty: {
w: 'width'
}
}
},
plugins: [require('daisyui'), require('@tailwindcss/line-clamp')],
// daisyUI config (optional)
daisyui: {
styled: true,
themes: true,
base: true,
utils: true,
logs: false,
rtl: false,
prefix: '',
darkTheme: 'dark'
}
};