-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathtailwind.config.js
34 lines (33 loc) · 982 Bytes
/
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
const { join } = require('path');
const { createGlobPatternsForDependencies } = require('@nx/react/tailwind');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
join(
__dirname,
'{src,pages,components,app}/**/*!(*.stories|*.spec).{ts,tsx,html}',
),
...createGlobPatternsForDependencies(__dirname),
],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: ['var(--ui-kit-font-sans)'],
messiri: ['var(--font-messiri)'],
},
colors: {
primary: 'var(--ui-kit-color-primary)',
'islamic-green': 'var(--ui-kit-color-primary)',
danger: 'var(--ui-kit-color-danger)',
black: 'var(--color-black)',
'light-green': 'var(--color-light-green)',
'light-gray': 'var(--color-light-gray)',
'dark-gray': 'var(--color-dark-gray)',
'haqq-black': '#0D0D0E',
'islamic-modal-overlay': '#0c0c0c66',
},
},
},
plugins: [],
};