-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
45 lines (44 loc) · 1.08 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./**/*.php', 'index.php'],
theme: {
extend: {
fontFamily: {
asap: ['Asap' ,'sans-serif'],
inconsolata: ['Inconsolata' ,'monospace'],
maven: ['Maven Pro' ,'sans-serif'],
},
fontSize: {
title_lg: '56px',
title_md: '24px',
title_sm: '16px',
subtitle: '20px',
tag_md: '16px',
tag_sm: '12px',
text_md: '16px',
text_sm: '14px',
},
colors: {
red: '#E3646E',
purple: '#BB72E9',
blue: '#3996DB',
green: '#82BC4F',
yellow: '#EABD5F',
'gray-100': '#0D0E11',
'gray-200': '#16181D',
'gray-300': '#292C34',
'gray-400': '#878EA1',
'gray-500': '#C0C4CE',
'gray-600': '#E2E4E9',
},
backgroundImage: {
'hero': "url('/assets/images/Background_Intro.png')",
'contact': "url('/assets/images/Background_Contacts.png')",
},
maxWidth: {
'1040': '1040px',
}
},
},
plugins: [],
}