-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
92 lines (88 loc) · 2.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
module.exports = {
content: [
'./index.html',
'./src/**/*.{html,js}',
'./components/**/*.{js,vue,ts}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./plugins/**/*.{js,ts}',
'./nuxt.config.{js,ts}',
'./app.vue',
],
theme: {
extend: {
fontFamily: {
technica: "'Ubuntu', sans",
signature: "'Akronim', serif",
anu: "'anurati', sans",
roboto: "'roboto', sans",
garamond_bold: "'ComorantGaramond-Bold', serif",
garamond_italic: "'ComorantGaramond-Italic', serif",
qwitcher_regular: "'QwitcherGrypen-Regular', serif",
creatures: ["Gamja Flower"],
garamond: ["EB Garamond", 'serif'],
cormorant: ["Cormorant", 'serif'],
alegreya: ["Alegreya", 'serif'],
cardo: ["Cardo"]
},
colors: {
'heading_beige': '#F4BC96',
'subtitle': '#630B22',
'drop_down': '#15273A',
'italic_sub': '#1A5C83',
'header_blue': '#144562'
},
animation: {
'gradient-x': 'gradient-x 10s ease infinite',
'gradient-y': 'gradient-y 10s ease infinite',
'gradient-xy': 'gradient-xy 10s ease infinite',
},
keyframes: {
'gradient-y': {
'0%, 100%': {
'background-size': '400% 400%',
'background-position': 'center top',
},
'50%': {
'background-size': '200% 200%',
'background-position': 'center center',
},
},
'gradient-x': {
'0%, 100%': {
'background-size': '200% 200%',
'background-position': 'left center',
},
'50%': {
'background-size': '200% 200%',
'background-position': 'right center',
},
},
'gradient-xy': {
'0%, 100%': {
'background-size': '400% 400%',
'background-position': 'left center',
},
'50%': {
'background-size': '200% 200%',
'background-position': 'right center',
},
},
},
},
screens: {
xsm: { min: '10px', max: '299px' },
sm: { min: '10px', max: '767px' },
// => @media (min-width: 640px and max-width: 767px) { ... }
md: { min: '768px', max: '1023px' },
// => @media (min-width: 768px and max-width: 1023px) { ... }
lg: { min: '1024px', max: '1279px' },
// => @media (min-width: 1024px and max-width: 1279px) { ... }
xl: { min: '1280px', max: '1535px' },
// => @media (min-width: 1280px and max-width: 1535px) { ... }
'2xl': { min: '1536px' },
// => @media (min-width: 1536px) { ... }
},
},
plugins: [],
};