-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
39 lines (36 loc) · 1.24 KB
/
Copy pathtailwind.config.js
File metadata and controls
39 lines (36 loc) · 1.24 KB
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 defaultTheme from 'tailwindcss/defaultTheme';
import forms from '@tailwindcss/forms';
/** @type {import('tailwindcss').Config} */
export default {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/views/**/*.blade.php',
],
theme: {
extend: {
fontFamily: {
sans: ['Figtree', ...defaultTheme.fontFamily.sans],
},
colors: {
// Render-inspired teal accent (replaces the default indigo scale).
// 400 is the bright signature accent for text/icons/highlights;
// 500/600 are deep enough to keep white text AA-contrast on buttons.
indigo: {
50: '#effcfb',
100: '#d4f5f1',
200: '#a9ebe3',
300: '#7de2d8',
400: '#46e1d5',
500: '#0d9488',
600: '#0f766e',
700: '#115e59',
800: '#134e4a',
900: '#123f3a',
950: '#042f2e',
},
},
},
},
plugins: [forms],
};