-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.js
61 lines (55 loc) · 2.33 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
52
53
54
55
56
57
58
59
60
61
const defaultTheme = require('tailwindcss/defaultTheme');
module.exports = {
experimental: {
optimizeUniversalDefaults: true,
},
content: [
'./app/**/*.php',
'./public/**/*.html',
'./resources/**/*.{html,js,jsx,md,mdx,php,ts,tsx,twig,vue}'
],
theme: {
extend: {
colors: {
orange: {
DEFAULT: '#FF9300',
'500': '#FF9300'
},
},
typography: {
theme: {
css: {
'--tw-prose-body': 'var(--primary-text-color)',
'--tw-prose-headings': 'var(--primary-text-color)',
'--tw-prose-lead': 'var(--primary-text-color)',
'--tw-prose-links': 'var(--tint-color)',
'--tw-prose-bold': 'var(--primary-text-color)',
'--tw-prose-counters': 'var(--secondary-text-color)',
'--tw-prose-bullets': 'var(--primary-text-color)',
'--tw-prose-hr': 'var(--border-color)',
'--tw-prose-quotes': 'var(--primary-text-color)',
'--tw-prose-quote-borders': 'var(--border-color)',
'--tw-prose-captions': 'var(--secondary-text-color)',
'--tw-prose-kbd': 'var(--primary-text-color)',
'--tw-prose-kbd-shadows': '17 24 39',
'--tw-prose-code': 'var(--primary-text-color)',
'--tw-prose-pre-code': 'var(--primary-text-color)',
'--tw-prose-pre-bg': 'var(--bg-secondary-color)',
'--tw-prose-th-borders': 'var(--border-color)',
'--tw-prose-td-borders': 'var(--border-color)'
},
},
},
fontFamily: {
sans: ['Inter', ...defaultTheme.fontFamily.sans],
mono: ['Fira Code VF', ...defaultTheme.fontFamily.mono],
source: ['Source Sans Pro', ...defaultTheme.fontFamily.sans],
'ubuntu-mono': ['Ubuntu Mono', ...defaultTheme.fontFamily.mono],
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography')
],
}