forked from icon-community/icon.community
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
89 lines (88 loc) · 2.89 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
78
79
80
81
82
83
84
85
86
87
88
89
const colors = require('tailwindcss/colors');
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
content: ['./layouts/**/*.html', './content/**/*.md'],
darkMode: 'class', // or 'media' or 'class'
theme: {
minHeight: {
'36': '144px',
'40': '160px',
'44': '176px',
},
colors: {
transparent: 'transparent',
current: 'currentColor',
black: colors.black,
blue: colors.blue,
gray: colors.gray,
green: colors.green,
indigo: colors.indigo,
purple: colors.purple,
rose: colors.rose,
sky: colors.sky,
slate: colors.slate,
teal: colors.teal,
white: colors.white,
yellow: colors.yellow,
red: colors.red,
orange: colors.orange,
slate: colors.slate,
'icon': '#32b8bb',
'icon-hi': '#31f2f6',
'icon-lo': '#2ca9b7',
'icon-dark': '#087083'
},
screens: {
'xs': '360px',
...defaultTheme.screens,
},
extend: {
scale: {
'-100': '-1',
},
fontFamily: {
'montserrat': 'Montserrat'
},
cursor: {
'xmas': 'url(/assets/images/tree_cursor2.png), pointer',
},
backgroundImage: {
conic: 'conic-gradient(var(--tw-gradient-stops))',
'conic-to-t': 'conic-gradient(at top, var(--tw-gradient-stops))',
'conic-to-b': 'conic-gradient(at bottom, var(--tw-gradient-stops))',
'conic-to-l': 'conic-gradient(at left, var(--tw-gradient-stops))',
'conic-to-r': 'conic-gradient(at right, var(--tw-gradient-stops))',
'conic-to-tl': 'conic-gradient(at top left, var(--tw-gradient-stops))',
'conic-to-tr': 'conic-gradient(at top right, var(--tw-gradient-stops))',
'conic-to-bl':
'conic-gradient(at bottom left, var(--tw-gradient-stops))',
'conic-to-br':
'conic-gradient(at bottom right, var(--tw-gradient-stops))',
radial: 'radial-gradient(ellipse at center, var(--tw-gradient-stops))',
'radial-at-t':
'radial-gradient(ellipse at top, var(--tw-gradient-stops))',
'radial-at-b':
'radial-gradient(ellipse at bottom, var(--tw-gradient-stops))',
'radial-at-l':
'radial-gradient(ellipse at left, var(--tw-gradient-stops))',
'radial-at-r':
'radial-gradient(ellipse at right, var(--tw-gradient-stops))',
'radial-at-tl':
'radial-gradient(ellipse at top left, var(--tw-gradient-stops))',
'radial-at-tr':
'radial-gradient(ellipse at top right, var(--tw-gradient-stops))',
'radial-at-bl':
'radial-gradient(ellipse at bottom left, var(--tw-gradient-stops))',
'radial-at-br':
'radial-gradient(ellipse at bottom right, var(--tw-gradient-stops))'
},
},
},
variants: {
extend: {},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/aspect-ratio'),
],
}