-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
44 lines (42 loc) · 1.22 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
const plugin = require('tailwindcss/plugin')
// const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: ['./index.html', './src/**/*.{vue,ts}'],
theme: {
fontFamily: {
'sans': 'Plus Jakarta Sans, Arial, sans-serif',
},
extend: {
colors: {
primary: '#4139FF',
primaryHover: '#2D27BE',
label: '#576F92',
lightGreen: '#DAFFCC',
lightPurple: '#E1E0FF',
lightYellow: '#F4FFDE',
lightRed: '#FFC9BA',
lightGrey: '#F5F5F5',
}
},
},
plugins: [
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/line-clamp'),
require('@tailwindcss/typography'),
require('@tailwindcss/forms'),
require('tailwind-scrollbar-hide'),
plugin(function ({ addVariant, e, postcss }) {
addVariant('firefox', ({ container, separator }) => {
const isFirefoxRule = postcss.atRule({
name: '-moz-document',
params: 'url-prefix()',
})
isFirefoxRule.append(container.nodes)
container.append(isFirefoxRule)
isFirefoxRule.walkRules((rule) => {
rule.selector = `.${e(`firefox${separator}${rule.selector.slice(1)}`)}`
})
})
}),
],
}