forked from solectrus/solectrus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
47 lines (39 loc) · 899 Bytes
/
tailwind.config.ts
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
import type { Config } from 'tailwindcss';
import colors from 'tailwindcss/colors';
export default {
content: ['./app/**/*.{slim,rb}', './app/javascript/**/*.{js,ts}'],
theme: {
extend: {
screens: {
'3xl': '1920px',
},
aspectRatio: {
square: '1 / 1',
},
containers: {
c0: '10rem',
c1: '12rem',
c2: '15rem',
c3: '18rem',
c4: '21rem',
},
spacing: {
'144': '36rem',
},
transitionProperty: {
'max-height': 'max-height',
},
colors: {
green: colors.emerald,
yellow: colors.amber,
purple: colors.violet,
},
},
},
plugins: [
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/container-queries'),
require('@tailwindcss/forms'),
require('tailwindcss-displaymodes'),
],
} satisfies Config;