-
Notifications
You must be signed in to change notification settings - Fork 17
/
tailwind.config.js
87 lines (86 loc) · 2.26 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
// function withOpacityValue(variable) {
// return ({ opacityValue }) => {
// if (opacityValue === undefined) {
// return `rgb(var(${variable}))`;
// }
// return `rgb(var(${variable}) / ${opacityValue})`;
// };
// }
/** @type {import("@types/tailwindcss/tailwind-config").TailwindConfig } */
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {
fontFamily: {
serif: [
'p22-mackinac-pro',
'ui-serif',
'Georgia',
'Cambria',
'"Times New Roman"',
'Times',
'serif',
],
sans: [
'Ambit',
'ui-sans-serif',
'system-ui',
'-apple-system',
'BlinkMacSystemFont',
'"Segoe UI"',
'Roboto',
'"Helvetica Neue"',
'Arial',
'"Noto Sans"',
'sans-serif',
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
'"Noto Color Emoji"',
],
display: ['PT Mono', 'monospace'],
primary: ['sans-serif'],
},
colors: {
'landing-theme': {
background: '#292833',
nightgrey: '#292833',
},
background: 'var(--background)',
nightgrey: 'var(--nightgrey)',
},
backgroundImage: {
'spl-gov': "url('/assets/backgrounds/spl-gov.png')",
'daotype-multisig': "url('/assets/backgrounds/daotype-multisig.png')",
'daotype-nft-community':
"url('/assets/backgrounds/daotype-nft-community.png')",
'daotype-tokenized': "url('/assets/backgrounds/daotype-tokenized.png')",
'managing-dao': "url('/assets/backgrounds/managing-dao.png')",
},
keyframes: {
loader: {
to: {
opacity: 0.1,
transform: 'translate3d(0, 0, 0)',
},
},
gradient: {
'0%': {
'background-position': '15% 0%',
},
'50%': {
'background-position': '85% 100%',
},
'100%': {
'background-position': '15% 0%',
},
},
},
screens: {
md: '834px',
'1_5xl': '1312px',
},
},
},
plugins: [require('@tailwindcss/forms')],
};