-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.cjs
71 lines (71 loc) · 1.73 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}',
'./node_modules/flowbite/**/*.js',
],
theme: {
extend: {
fontSize: {
'4.5xl': [
'2.5rem',
{
lineHeight: '2.8rem',
letterSpacing: '-0.01em',
fontWeight: '500',
},
],
'4.75xl': [
'2.8rem',
{
lineHeight: '2.8rem',
letterSpacing: '-0.01em',
fontWeight: '500',
},
],
},
backgroundImage: {
portfolio: "url('/images/Portfolio.webp')",
rustycopier: "url('/images/Rustycopier.webp')",
cuvimakerExample: "url('/images/Cuvimaker-example.webp')",
placeholder: "url('/images/640x360.webp')",
vuefluiddnd: "url('/images/VueFluidDnD.webp')",
},
typography: ({ theme }) => ({
custom: {
css: {
'--tw-prose-headings': 'var(--default-font-color)',
'--tw-prose-bold': theme('colors.teal[200]'),
'--tw-prose-code': theme('colors.teal[100]'),
'--tw-prose-links':
'var(--default-secundary-font-color)',
'--tw-prose-body': 'var(--default-font-color)',
pre: {
backgroundColor:
'var(--default-background-color-darker) !important',
},
},
},
}),
},
fontFamily: {
lato: ['Lato', 'sans-serif'],
},
keyframes: {
'show-presentation': {
'0%': {
opacity: 0,
transform: 'translate(0px, -10px)',
},
},
},
animation: {
'presentation-title': '500ms show-presentation ease',
'presentation-main-skill':
'500ms ease 200ms forwards show-presentation',
'presentation-description':
'500ms ease 400ms forwards show-presentation',
},
},
plugins: [require('flowbite/plugin'), require('@tailwindcss/typography')],
};