-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
39 lines (38 loc) · 983 Bytes
/
Copy pathtailwind.config.ts
File metadata and controls
39 lines (38 loc) · 983 Bytes
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
import type { Config } from 'tailwindcss'
const config: Config = {
darkMode: 'class',
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
animation: {
ping: 'ping .3s cubic-bezier(0, 0, 0.2, 1) 1',
spin: 'spin .5s linear infinite'
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
fontFamily: {
roboto: ['var(--font-roboto)'],
segoe_ui: ['var(--font-segoe-ui)'],
},
colors: {
primary: {
blue: '#1D9BF0',
gray: '#E7ECF0',
red: '#EF1C5C',
['dark-gray']: '#6E767D'
},
'black': '#000',
'white': '#FFF'
}
},
},
plugins: [],
}
export default config