-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
51 lines (51 loc) · 1.1 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./components/**/*.{js,vue,ts}',
'./layouts/**/*.vue',
'./pages/**/*.vue',
'./plugins/**/*.{js,ts}',
'./nuxt.config.{js,ts}',
],
theme: {
extend: {
container: {
center: true,
padding: '15px',
},
colors: {
'nuha-fushia': {
DEFAULT: '#c40f55',
secondary: '#ee4d7a',
300: '#e53076',
200: '#f4deeb',
100: '#fcf0f7',
},
'nuha-grey': {
DEFAULT: '#2d2d2d',
300: '#4e4e4e',
200: '#8f8f8f',
100: '#afafaf',
},
'nuha-white': {
DEFAULT: '#faf4f4'
},
'prediction-neutral': {
DEFAULT: '#6db981',
},
'prediction-hatespeach': {
DEFAULT: '#d13561',
},
},
fontFamily: {
LTZarid: '29LT Zarid Text Regular',
IBMPlexSansArabic: 'IBM Plex Sans Arabic',
IBMPlexMono: 'IBM Plex Mono',
},
lineHeight: {
15: '68px',
},
},
},
plugins: [],
}