init
This commit is contained in:
36
tailwind.config.js
Normal file
36
tailwind.config.js
Normal file
@@ -0,0 +1,36 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
bg: {
|
||||
main: 'rgba(19, 21, 20, 1)',
|
||||
light: 'rgba(28, 28, 30, 1)',
|
||||
},
|
||||
card: {
|
||||
DEFAULT: 'rgba(28, 28, 30, 1)',
|
||||
},
|
||||
brand: {
|
||||
DEFAULT: 'rgba(163, 61, 215, 1)',
|
||||
},
|
||||
text: {
|
||||
light: '#FFFFFF',
|
||||
DEFAULT: '#AEAEAE',
|
||||
},
|
||||
border: {
|
||||
light: '#D9D9D9',
|
||||
},
|
||||
},
|
||||
keyframes: {
|
||||
marquee: {
|
||||
to: { transform: 'translateX(-50%)' },
|
||||
},
|
||||
},
|
||||
animation: {
|
||||
marquee: 'marquee 20s linear infinite',
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
}
|
||||
Reference in New Issue
Block a user