-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzdf_styles.js
46 lines (44 loc) · 1.1 KB
/
zdf_styles.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
/* inja harchi ke hamishe bayad sabet bemune ro negah midarim! */
const colors = require('tailwindcss/colors')
module.exports = {
corePlugins: {
/* float: false, */
container: false,
},
purge: [],
darkMode: false, // or 'media' or 'class'
theme: {
screens: {
tablet: '640px',
computer: '1000px',
},
colors: {
transparent: 'transparent',
current: 'currentColor',
white: colors.white,
black: colors.black,
blue: colors.blue,
yellow: colors.yellow,
gray: colors.blueGray,
cyan: colors.cyan,
lime: colors.lime,
rose: colors.rose,
},
extend: {},
},
variants: {
extend: {},
},
plugins: [
function ({ addComponents }) {
addComponents({
'.container': {
maxWidth: '100%',
'@screen computer': {
maxWidth: '1140px',
},
}
})
}
],
}