forked from avo-hq/avo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.preset.js
167 lines (162 loc) · 5.14 KB
/
tailwind.preset.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/* eslint-disable global-require */
const plugin = require('tailwindcss/plugin')
const colors = require('tailwindcss/colors')
const defaultTheme = require('tailwindcss/defaultTheme')
const avoPath = require('child_process').execSync('bundle show avo', { encoding: 'utf-8' }).trim()
const { primary, blue, gray } = require('./tailwind.custom')
function contentPaths(basePath) {
return [
`${basePath}/safelist.txt`,
`${basePath}/lib/avo/**/*.rb`,
`${basePath}/app/helpers/**/*.rb`,
`${basePath}/app/views/**/*.{html.erb,rb}`,
`${basePath}/app/javascript/**/*.js`,
`${basePath}/app/components/**/*.{html.erb,rb}`,
`${basePath}/app/controllers/**/*.rb`,
`${basePath}/lib/**/*.rb`,
`${basePath}/public/**/*.{js,css}`,
]
}
module.exports = {
content: [
...contentPaths('./tmp/avo/packages/*'),
...contentPaths('./../avo-kanban/*'),
...contentPaths(avoPath),
],
theme: {
extend: {
aspectRatio: {
'cover-sm': '9/2',
'cover-md': '9/3',
'cover-lg': '9/4',
},
colors: {
blue,
gray,
primary,
sky: colors.sky,
teal: colors.teal,
slate: colors.slate,
indigo: colors.indigo,
application: 'rgb(var(--color-application-background))',
},
fontFamily: {
// eslint-disable-next-line max-len
sans: '"Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"',
},
inset: {
'1/2': '50%',
full: '100%',
},
boxShadow: {
row: '0 0 15px -5px rgba(0, 0, 0, 0.25)',
context: '0 20px 25px -5px rgba(0, 0, 0, 0.25), 0 0 25px -5px rgba(0, 0, 0, 0.1)',
panel: '0px 4px 8px rgba(0, 0, 0, 0.04), 0px 0px 2px rgba(0, 0, 0, 0.06), 0px 0px 1px rgba(0, 0, 0, 0.04)',
modal: ' 0px 24px 32px rgba(0, 0, 0, 0.04), 0px 16px 24px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.04), 0px 0px 1px rgba(0, 0, 0, 0.04)',
stripe: '0 15px 35px #31315d1a, 0 5px 15px #00000014',
},
minWidth: {
'1/2': '50%',
'1/3': '33.333333%',
'2/3': '66.666667%',
'1/4': '25%',
'2/4': '50%',
'3/4': '75%',
'1/5': '20%',
'2/5': '40%',
'3/5': '60%',
'4/5': '80%',
},
maxWidth: {
168: '42rem',
},
minHeight: {
inherit: 'inherit',
16: '4rem',
24: '6rem',
48: '12rem',
'1/2': '50%',
'1/3': '33.333333%',
'2/3': '66.666667%',
'1/4': '25%',
'2/4': '50%',
'3/4': '75%',
'1/5': '20%',
'2/5': '40%',
'3/5': '60%',
'4/5': '80%',
},
spacing: {
full: '100%',
72: '18rem',
80: '20rem',
88: '22rem',
96: '24rem',
'1/2': '50%',
'1/3': '33.333333%',
'2/3': '66.666667%',
'1/4': '25%',
'2/4': '50%',
'3/4': '75%',
'1/5': '20%',
'2/5': '40%',
'3/5': '60%',
'4/5': '80%',
'1/6': '16.666667%',
'2/6': '33.333333%',
'3/6': '50%',
'4/6': '66.666667%',
'5/6': '83.333333%',
'1/12': '8.333333%',
'2/12': '16.666667%',
'3/12': '25%',
'4/12': '33.333333%',
'5/12': '41.666667%',
'6/12': '50%',
'7/12': '58.333333%',
'8/12': '66.666667%',
'9/12': '75%',
'10/12': '83.333333%',
'11/12': '91.666667%',
},
transitionTimingFunction: {
pop: 'cubic-bezier(.23,2,.73,.55)',
},
},
screens: {
xs: '495px',
...defaultTheme.screens,
},
},
variants: {
margin: ['responsive', 'hover', 'focus', 'group-hover', 'checked', 'kanban-dragging'],
display: ['responsive', 'hover', 'focus', 'group-hover', 'checked', 'kanban-dragging'],
padding: ['responsive', 'group-hover', 'kanban-dragging'],
borderColor: ['responsive', 'hover', 'focus', 'disabled'],
backgroundColor: ['responsive', 'hover', 'focus', 'disabled'],
textColor: ['responsive', 'hover', 'focus', 'disabled'],
translate: ['responsive', 'hover', 'focus', 'active'],
cursor: ['responsive', 'disabled'],
outline: ['responsive', 'disabled', 'kanban-dragging', 'empty'],
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
plugin(({ addUtilities, addVariant }) => {
const newUtilities = {
'.backface-hidden': {
backfaceVisibility: 'hidden',
},
}
addUtilities(newUtilities, ['group-hover'])
// Add has-sidebar variant to make it easier to target fields in panels and use the full-width
addVariant('has-sidebar', '.has-sidebar & ')
addVariant('has-record-selector', '.has-record-selector & ')
addVariant('has-profile-photo', '.has-profile-photo & ')
addVariant('has-cover-photo', '.has-cover-photo & ')
addVariant('index-grid-view', '.index-grid-view & ')
addVariant('index-table-view', '.index-table-view & ')
addVariant('kanban-dragging', '.kanban-dragging & ')
}),
],
}