-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
47 lines (47 loc) · 1.2 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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {
backgroundImage: {
'gradient-radial':
'radial-gradient(50% 50% at 50% 50%,var(--tw-gradient-stops))',
},
colors: {
'base-100': '#010b28',
primary: '#58DADA',
'base-content': '#ffffff',
'base-200': '#606061',
},
fontFamily: {
Roboto: ['Roboto', ...defaultTheme.fontFamily.sans],
RobotoCondensed: ['Roboto Condensed', ...defaultTheme.fontFamily.sans],
mono: ['Roboto Mono', ...defaultTheme.fontFamily.mono],
},
keyframes: {
pop: {
'0%': {
width: '100%',
},
'100%': {
width: '90%',
},
},
opacity: {
'0%': {
opacity: 0,
},
'100%': {
opacity: 100,
},
},
},
animation: {
pop: 'pop linear 1s alternate infinite',
opacity: 'opacity 0.3s ease-out forwards',
},
},
},
plugins: [require('tailwindcss-magic')],
};