-
Notifications
You must be signed in to change notification settings - Fork 5
/
tailwind.config.js
79 lines (79 loc) · 2.12 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
// screens: {
// sm: '480px',
// md: '768px',
// lg: '976px',
// xl: '1440px',
// },
// colors: {
// 'blue': '#1fb6ff',
// 'purple': '#7e5bef',
// 'pink': '#ff49db',
// 'orange': '#ff7849',
// 'green': '#13ce66',
// 'yellow': '#ffc82c',
// 'gray-dark': '#273444',
// 'gray': '#8492a6',
// 'gray-light': '#d3dce6',
// },
// fontFamily: {
// sans: ['Graphik', 'sans-serif'],
// serif: ['Merriweather', 'serif'],
// },
extend: {
colors: {
'menu-yellow': 'rgb(215, 171, 97)',
'stripe-red': 'rgb(200, 35, 55)',
'stripe-orange': 'rgb(224, 98, 54)',
'stripe-yellow': 'rgb(215, 171, 97)',
'stripe-blue': 'rgb(47, 76, 121)',
},
backgroundImage: {
'starfield-stripes':
'linear-gradient(rgb(200, 35, 55) 0%, rgb(200, 35, 55) 25%, rgb(224, 98, 54) 25%, rgb(224, 98, 54) 50%, rgb(215, 171, 97) 50%, rgb(215, 171, 97) 75%, rgb(47, 76, 121) 75%, rgb(47, 76, 121) 100%)',
},
fontFamily: {
sans: [
'Inter',
'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"',
],
orbitron: ["Orbitron", "sans-serif"],
},
transformOrigin: {
'stripe-wipe': '100% 50%'
},
transitionTimingFunction: {
'stripe-ease': 'ease'
},
transitionDelay: {
'ribbon': 'calc(50ms * var(--ribbon-index))'
},
transitionProperty: {
'trans': 'transform'
},
gridTemplateRows: {
'comment': '3rem minmax(0, 1fr) minmax(0, 1fr)'
}
},
},
plugins: [],
}