-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
45 lines (43 loc) · 1001 Bytes
/
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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme')
const colors = require('tailwindcss/colors')
module.exports = {
content: [
'./resources/**/*.blade.php',
'./resources/**/*.js',
'./resources/**/*.vue',
],
theme: {
fontFamily: {
sans: ['Figtree', ...defaultTheme.fontFamily.sans],
serif: ['Castoro', ...defaultTheme.fontFamily.sans],
},
extend: {
colors: {
'gray': colors.neutral,
'blue': {
50: '#F5F6FF',
100: '#E5E9FF',
200: '#D1D7FF',
300: '#B8C1FF',
400: '#8F9EFF',
500: '#667AFF',
600: '#3853FF',
700: '#0022FF',
800: '#001CD1',
900: '#0017AA',
950: '#000E6B',
},
},
screens: {
'3xl': '1920px',
},
boxShadow: {
'outline': 'inset 0 0 0 1px',
},
},
},
plugins: [
require('@tailwindcss/typography'),
],
}