-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtailwind.config.js
59 lines (59 loc) · 2.31 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./components/**/*.vue', './layouts/**/*.vue', './pages/**/*.vue'],
theme: {
extend: {
colors: {
darkPurple: '#3C0C55',
yellowDs: '#FFE40F',
purpleDs: '#9123CB',
haiti: '#1A0724',
},
fill: {
yellowDs: '#FFE40F',
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'external-link':
'url(data:image/svg+xml;base64,PHN2ZyBpZD0iZXh0ZXJuYWwiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIGFyaWEtaGlkZGVuPSJ0cnVlIiByb2xlPSJpbWciIGNsYXNzPSJpY29uIiB3aWR0aD0iMTVweCIgaGVpZ2h0PSIxNXB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIGRhdGEtdi0xMDg5NWM5MT0iIj48cGF0aCBmaWxsPSJjdXJyZW50Q29sb3IiIGQ9Ik0xMCA2djJINXYxMWgxMXYtNWgydjZhMSAxIDAgMCAxLTEgMUg0YTEgMSAwIDAgMS0xLTFWN2ExIDEgMCAwIDEgMS0xaDZ6bTExLTN2OGgtMlY2LjQxM2wtNy43OTMgNy43OTRsLTEuNDE0LTEuNDE0TDE3LjU4NSA1SDEzVjNoOHoiLz48L3N2Zz4=);',
},
fontFamily: {
brand: ['Mono45', 'Arial', 'sans-serif'],
headings: ['Dank', 'Arial', 'sans-serif'],
base: ['Inter', 'Arial', 'sans-serif'],
},
animation: {
slideLeft1: 'slideLeft1 40s linear infinite',
slideLeft2: 'slideLeft2 40s linear infinite',
slideRight1: 'slideRight1 40s linear infinite',
slideRight2: 'slideRight2 40s linear infinite',
},
keyframes: {
slideLeft1: {
'0%': {transform: 'translateX(0%)'},
'100%': {transform: 'translateX(-100%)'},
},
slideLeft2: {
'0%': {transform: 'translateX(100%)'},
'100%': {transform: 'translateX(0)'},
},
slideRight1: {
'0%': {transform: 'translateX(-100%)'},
'100%': {transform: 'translateX(0)'},
},
slideRight2: {
'0%': {transform: 'translateX(0)'},
'100%': {transform: 'translateX(100%)'},
},
},
gridTemplateColumns: {
"episode-heading": "140px auto",
"episode-heading-mobile": "70px auto",
"episode-head": "200px auto",
"episode-head-mobile": "110px auto",
"episode-head-phablette": "140px auto",
}
},
},
plugins: [require('@tailwindcss/forms'), require('@tailwindcss/typography')],
};