-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
53 lines (50 loc) · 1.91 KB
/
tailwind.config.js
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
const defaultTheme = require('tailwindcss/defaultTheme');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./vendor/laravel/jetstream/**/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
'./app/Models/Repository.php',
'./app/Http/Livewire/Admin/RepositoryForm.php',
],
theme: {
container: {
center: true,
padding: {
DEFAULT: '1rem',
xl: '2rem',
'2xl': '4rem',
},
},
extend: {
backgroundImage: {
'gradient-conic': 'conic-gradient(var(--tw-gradient-stops))',
},
keyframes: {
disco: {
'0%': { transform: 'translateY(-50%) rotate(0deg)' },
'100%': { transform: 'translateY(-50%) rotate(360deg)' },
},
},
animation: {
disco: 'disco 4s linear infinite',
},
colors: {
'primary': { DEFAULT: '#E30613', '50': '#FDA4A9', '100': '#FC9096', '200': '#FB6871', '300': '#FA414C', '400': '#F91926', '500': '#E30613', '600': '#AC050E', '700': '#76030A', '800': '#3F0205', '900': '#080001'},
'category-color': 'rgb(var(--category-color) / <alpha-value>)',
'glittr-black': '#101928',
'glittr-blue': '#3A86FF',
'glittr-violet': '#8338EC',
'glittr-pink': '#FF006E',
'glittr-orange': '#FB5607',
'glittr-yellow': '#FFBE0B',
},
fontFamily: {
sans: ['"Source Sans 3"', 'sans-serif'],
},
},
},
plugins: [require('@tailwindcss/forms'), require('@tailwindcss/typography')],
};