-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.mjs
34 lines (33 loc) · 1.13 KB
/
tailwind.config.mjs
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
const colors = require('tailwindcss/colors')
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
container: {
center: true,
padding: '1rem'
},
extend: {
colors: {
gray: colors.neutral,
white: '#fff',
primary: '#00F3B1',
secondary: '#C38CFF',
company: '#691DE7',
decoder: '#FF166A'
},
backgroundImage: {
'gradient-primary': 'radial-gradient(150% 150% at 100% 0%, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 55%);',
'gradient-hackerz': 'radial-gradient(100% 100% at 50% 0%, rgba(0, 243, 177, 0.20) 0%, rgba(0, 243, 177, 0.00) 51.56%);',
'gradient-hackerz-b': 'radial-gradient(100% 100% at 50% 125%, rgba(0, 243, 177, 0.10) 0%, rgba(0, 243, 177, 0.00) 60%);',
'gradient-company': 'radial-gradient(145% 145% at 100% 0%, rgba(105, 29, 231, 0.59) 0%, rgba(105, 29, 231, 0.00) 55%);',
'gradient-decoder': 'radial-gradient(145% 145% at 100% 0%, rgba(255, 22, 106, 0.50) 0%, rgba(255, 22, 106, 0.00) 55%);',
},
animation: {
'spin-slow': 'spin 30s linear infinite',
}
}
},
plugins: [
require('@tailwindcss/typography'),
],
}