-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtailwind.config.js
66 lines (64 loc) · 1.8 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
module.exports = {
mode: 'jit',
purge: ['./pages/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class', // or 'media' or 'class'
theme: {
extend: {
// fontFamily: {
// sans : ['Quicksand','sans-serif' ]
// },
// // Palette generated with https://coolors.co/7e8987-4b4a67-fef102-f49097-f2f5ff
colors:{
yellow: {
light: '#ffff58',
DEFAULT: '#fef102', // Grin yellow
dark: '#c7c000'
},
gray: {
light: '#adb9b7',
DEFAULT: '#7e8987', // Battleship Gray
dark: '#525c5a'
},
purple: {
light: '#777695',
DEFAULT: '#4b4a67', // Independence
dark: '#22223c'
},
pink: {
light: '#ffc1c8',
DEFAULT: '#f49097', // Salmon Pink
dark: '#bf6169'
},
white: {
light: '#ffffff',
DEFAULT: '#f2f5ff', //Ghost white
dark: '#bfc2cc'
},
salmon : {
DEFAULT: '#f49097'
},
grinblue:{
DEFAULT:"#1C46FF"
},
gringreen:{
DEFAULT:"#81FF0F"
}
},
backgroundImage: (theme) => ({
'bg-grincc-logo-black':
"url('https://images.unsplash.com/photo-1629651480694-edb8451b31aa?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=668&q=80')",
'bg-grincc-logo-transparent':
"url('https://images.unsplash.com/photo-1629651480694-edb8451b31aa?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=668&q=80')",
}),
},
},
variants: {
extend: {
backgroundImage: ['dark'],
},
},
plugins: [
require('daisyui'),
require('@tailwindcss/typography'),
],
}