This repository was archived by the owner on Jun 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.theme.cjs
More file actions
83 lines (83 loc) · 2.97 KB
/
Copy pathtailwind.theme.cjs
File metadata and controls
83 lines (83 loc) · 2.97 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
module.exports = {
colors: {
breadgray: {
'ultra-white': '#F8F8F8',
white: '#E5E5E5',
'light-grey': '#D4D4D4',
grey: '#A3A3A3',
rye: '#525252',
toast: '#464646',
burnt: '#343434',
'og-dark': '#2E2E2E',
charcoal: '#242424',
darkest: '#272727',
'cta-bg': '#2c2c2c',
},
breadpink: {
pink: '#FF99E2',
shaded: '#E873D3',
100: '#C463CA',
200: '#FF99E2',
300: '#E873D3',
400: '#A416AD',
500: '#D04EC5',
},
breadviolet: {
shaded: '#D04EC5',
violet: '#A416AD',
},
'button-border': '#2E2E2E',
},
fontFamily: {
pressstart: ['"Press Start 2P"', 'sans-serif'],
redhat: ['"Red Hat Text"', 'sans-serif'],
poppins: ['Poppins', 'sans-serif'],
},
screens: {
'hero-image': '432px',
'footer-sm': '580px',
'footer-md': '600px',
'footer-lg': '1075px',
},
borderRadius: {
cta: '0.3125rem',
},
typography: ({ theme }) => ({
pink: {
css: {
'--tw-prose-body': theme('colors.neutral[400]'),
'--tw-prose-headings': theme('colors.neutral[300]'),
'--tw-prose-lead': theme('colors.neutral[700]'),
'--tw-prose-links': theme('colors.neutral[300]'),
'--tw-prose-bold': theme('colors.neutral[200]'),
'--tw-prose-counters': theme('colors.neutral[600]'),
'--tw-prose-bullets': theme('colors.neutral[400]'),
'--tw-prose-hr': theme('colors.neutral[300]'),
'--tw-prose-quotes': theme('colors.neutral[900]'),
'--tw-prose-quote-borders': theme('colors.neutral[300]'),
'--tw-prose-captions': theme('colors.neutral[700]'),
'--tw-prose-code': theme('colors.neutral[900]'),
'--tw-prose-pre-code': theme('colors.neutral[100]'),
'--tw-prose-pre-bg': theme('colors.neutral[900]'),
'--tw-prose-th-borders': theme('colors.neutral[300]'),
'--tw-prose-td-borders': theme('colors.neutral[200]'),
'--tw-prose-invert-body': theme('colors.neutral[200]'),
'--tw-prose-invert-headings': theme('colors.neutral[300]'),
'--tw-prose-invert-lead': theme('colors.neutral[300]'),
'--tw-prose-invert-links': theme('colors.white'),
'--tw-prose-invert-bold': theme('colors.white'),
'--tw-prose-invert-counters': theme('colors.neutral[400]'),
'--tw-prose-invert-bullets': theme('colors.neutral[600]'),
'--tw-prose-invert-hr': theme('colors.neutral[700]'),
'--tw-prose-invert-quotes': theme('colors.neutral[100]'),
'--tw-prose-invert-quote-borders': theme('colors.neutral[700]'),
'--tw-prose-invert-captions': theme('colors.neutral[400]'),
'--tw-prose-invert-code': theme('colors.white'),
'--tw-prose-invert-pre-code': theme('colors.neutral[300]'),
'--tw-prose-invert-pre-bg': 'rgb(0 0 0 / 50%)',
'--tw-prose-invert-th-borders': theme('colors.neutral[600]'),
'--tw-prose-invert-td-borders': theme('colors.neutral[700]'),
},
},
}),
};