-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathtailwind.config.js
More file actions
34 lines (33 loc) · 798 Bytes
/
tailwind.config.js
File metadata and controls
34 lines (33 loc) · 798 Bytes
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
const { url } = require('inspector');
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
backgroundImage: {
website_bg: 'url(../public/assets/website-bg.png)',
pattern: 'url(../public/assets/turtle-pattern.png)',
avtar: 'url(../public/assets/website/avtar.webp)',
},
fontFamily: {
primary: ['Josefin Sans', 'sans-serif'],
},
},
colors: {
black: '#313131',
blue: '#125F83',
lightblue: '#9FE4FF',
lightgrey: '#e5e7eb',
whiteish: '#F1FCFF',
sand: '#E7C7B4',
greyish: '#F8F8F8',
purple: '#B6D8F8',
grey: '#8E8E8E',
red: '#ff0000',
purpleish: '#C2CCF1',
},
},
plugins: [],
};