-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
81 lines (79 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
// @ts-check
/** @type {import('tailwindcss').Config} */
const config = {
content: ['./src/**/*.{ts,tsx}', './app/**/*.{ts,tsx}', './components/**/*.{ts,tsx}'],
theme: {
extend: {
colors: {
pink: '#FF88DF',
yellow: '#E9AF0D',
blue: '#30C4ED',
teal: '#8EEAE4',
peach: '#F8705F',
green: '#015A55',
gold: '#DFA84E',
// transparent: 'transparent',
// current: 'currentColor',
// black: '#000000',
// blue: {
// primary: '#053FB0',
// secondary: '#3071EF',
// },
// gray: {
// 100: '#F1F3F5',
// 200: '#CFD8DC',
// 300: '#AFBAC5',
// 400: '#90A4AE',
// 500: '#546E7A',
// 600: '#091D45',
// },
// green: {
// 100: '#388E3C',
// 200: '#146622',
// 300: '#4FD055',
// },
// red: {
// 100: '#C62828',
// 200: '#AD0000',
// },
// white: '#ffffff',
},
fontFamily: {
sans: ['var(--font-ibm-plex-sans)'],
display: ['var(--font-mortend)'],
header: ['var(--font-awesome-serif)'],
},
fontSize: {
xxs: '0.625rem',
},
keyframes: {
dialogFadeIn: {
from: { opacity: '0' },
to: { opacity: '1' },
},
fadeInAndScale: {
'0%': { opacity: '0', transform: 'scale(.9)' },
'100%': { opacity: '1', transform: 'scale(1)' },
},
marqueeScroll: {
'0%': { transform: 'translateX(0)' },
'100%': { transform: 'translateX(-100%)' },
},
revealVertical: {
'0%': { transform: 'translateY(-100%)' },
'100%': { transform: 'translateY(0%)' },
},
},
animation: {
dialogFadeIn: 'dialogFadeIn 150ms cubic-bezier(0.16, 1, 0.3, 1)',
fadeInAndScale: 'fadeInAndScale 250ms',
revealVertical: 'revealVertical 400ms forwards cubic-bezier(0, 1, 0.25, 1)',
marqueeScroll: 'marqueeScroll var(--marquee-duration) linear infinite',
},
},
},
// @ts-ignore
// eslint-disable-next-line global-require
plugins: [require('tailwindcss-radix')(), require('tailwindcss-animate')],
};
module.exports = config;