-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
118 lines (116 loc) · 3.87 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
import forms from '@tailwindcss/forms';
import defaultTheme from 'tailwindcss/defaultTheme';
/** @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',
'./resources/js/**/*.jsx',
],
darkMode: 'selector',
theme: {
extend: {
backgroundImage: {
'custom-bg': "url('/public/images/logo-bg.svg')",
},
fontFamily: {
sans: ['League Spartan', ...defaultTheme.fontFamily.sans],
},
colors: {
'color-01': '#7C5DFA',
'color-02': '#9277FF',
'color-03': '#1E2139',
'color-04': '#252945',
'color-05': '#DFE3FA',
'color-06': '#888EB0',
'color-07': '#7E88C3',
'color-08': '#0C0E16',
'color-09': '#EC5757',
'color-10': '#FF9797',
'color-11': '#F8F8FB',
'color-12': '#141625',
'navbar-bg': '#373B53',
'add-bg': '#F9FAFE',
status: '#858BB2',
paid: '#33D69F',
pending: '#FF8F00',
draft: '#373B53',
},
dropShadow: {
md: '0 10px 10px rgba(72, 84, 159, 10.04%)',
},
fontSize: {
base: [
'0.813rem', //13px
{
lineHeight: '1.125rem', //18px
letterSpacing: '0.1px',
fontWeight: '500',
},
],
'base-variant': [
'0.813rem', //13px
{
lineHeight: '0.938rem', //15px
letterSpacing: '0.1px',
fontWeight: '500',
},
],
lg: [
'0.938rem', //15px
{
lineHeight: '1.5rem', //24px
letterSpacing: '0.25px',
fontWeight: '700',
},
],
'lg-variant': [
'0.938rem', //15px
{
lineHeight: '0.938rem', //15px
letterSpacing: '0.25px',
fontWeight: '700',
},
],
'xl-variant': [
'0.938rem', //15px
{
lineHeight: '1.25rem', //20px
letterSpacing: '0.5px',
fontWeight: '700',
},
],
xl: [
'1.5rem', //24px
{
lineHeight: '1.375rem',
letterSpacing: '-0.75px',
fontWeight: '700',
},
],
'2xl': [
'1.5rem', //24px
{
lineHeight: '2rem', //32px
letterSpacing: '-0.5px',
fontWeight: '700',
},
],
'3xl': [
'2.25rem', //36px
{
lineHeight: '2.063rem',
letterSpacing: '-1.13px',
fontWeight: '700',
},
],
},
gridTemplateColumns: {
5: '6rem repeat(4, minmax(0, 1fr))',
6: '10rem 4rem 8rem 6rem minmax(0, 1fr)',
},
},
},
plugins: [forms, require('tailwind-scrollbar')],
};