-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
77 lines (67 loc) · 1.66 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
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
const content = require("./Build/Carbon.Pipeline/purge");
/** @type {import('tailwindcss').Config} */
module.exports = {
content,
theme: {
screens: {
'xs': '320px',
'ty': '480px',
'sm': '768px',
'md': '992px',
'lg': '1200px',
'xl': '1400px',
},
container: {
center: true,
padding: '1rem',
screens: {
'ty': '480px',
'sm': '768px',
'md': '860px',
'lg': '1140px',
'xl': '1300px',
},
},
aspectRatio: {
'none': 0,
'square': [1, 1],
'16/9': [16, 9],
'4/3': [4, 3],
'21/9': [21, 9],
},
colors: {
transparent: 'transparent',
black: '#000',
white: '#fff',
grey: {
100: '#F7F7F7',
200: '#EBEBEB',
300: '#DDDDDD',
400: '#C4C4C0',
500: '#9A9A9A',
},
primary: {
100: '#519EF9',
DEFAULT: '#4A90E2',
300: '#2C76CC',
},
body: '#000',
fuchsia: {
DEFAULT: '#A43BCB',
},
green: {
100: '#F5FFF4',
200: '#01811F',
},
red: {
100: '#ff4141',
200: '#D0021B',
},
},
extend: {},
},
plugins: [
require('tailwindcss-aspect-ratio'),
require('tw-elements/dist/plugin'),
],
};