-
Notifications
You must be signed in to change notification settings - Fork 11
/
tailwind.config.mjs
38 lines (36 loc) · 1013 Bytes
/
tailwind.config.mjs
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
import { join } from 'path';
import { createGlobPatternsForDependencies } from '@nx/react/tailwind';
import typographyPlugin from '@tailwindcss/typography';
/** @type {import('tailwindcss').Config} */
const config = {
content: [
join(__dirname, 'src/**/*!(*.stories|*.spec).{ts,tsx,html}'),
...createGlobPatternsForDependencies(__dirname),
],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
guise: ['var(--guise-font)'],
clash: ['var(--clash-font)'],
},
colors: {
'haqq-border': '#FFFFFF1A',
'haqq-modal-border': '#C5C5C5',
'haqq-black': '#0D0D0E',
'haqq-orange': '#EC5728',
'haqq-blue': '#091D53',
'haqq-seaweed': '#157C83',
'haqq-bigfoot-feet': '#E98C50',
'haqq-azure': '#ECFEFE',
'haqq-modal-overlay': '#0D0D0ECC',
'haqq-danger': '#F50000',
},
screens: {
'3xl': '2048px',
},
},
},
plugins: [typographyPlugin],
};
export default config;