-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
41 lines (40 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
const { join } = require('path');
const { createGlobPatternsForDependencies } = require('@nx/react/tailwind');
const typographyPlugin = require('@tailwindcss/typography');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
join(
__dirname,
'{src,lib,app,pages,components}/**/*!(*.stories|*.spec).{ts,tsx,js,jsx,html,mdx}',
),
...createGlobPatternsForDependencies(__dirname),
],
darkMode: 'class',
theme: {
extend: {
colors: {
'haqq-border': '#FFFFFF3D',
'haqq-black': '#0D0D0E',
'haqq-orange': '#EC5728',
'haqq-light-orange': '#FF8D69',
'haqq-blue': '#091D53',
'haqq-seaweed': '#157C83',
'haqq-bigfoot-feet': '#E98C50',
'haqq-azure': '#ECFEFE',
'haqq-gold': '#E3A13F',
},
fontFamily: {
clash: ['var(--font-clash)'],
guise: ['var(--font-guise)'],
messiri: ['var(--font-messiri)'],
manrope: ['var(--font-manrope)'],
},
screens: {
md: '744px',
'2xl': '1440px',
},
},
},
plugins: [typographyPlugin],
};