forked from polkassembly/polkassembly
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
51 lines (50 loc) · 1.45 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
// Copyright 2019-2025 @polkassembly/polkassembly authors & contributors
// This software may be modified and distributed under the terms
// of the Apache-2.0 license. See the LICENSE file for details.
/* eslint-disable sort-keys */
module.exports = {
important: true,
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./src/**/*.{jsx,tsx}'
],
theme: {
extend: {
fontFamily: {
poppins: ['var(--font-poppins)']
},
colors: {
navBlue: 'var(--navBlue)',
sidebarBlue: 'var(--sidebarBlue)',
blue_primary: 'var(--blue_primary)',
blue_secondary: 'var(--blue_secondary)',
green_primary: 'var(--green_primary)',
green_secondary: 'var(--green_secondary)',
grey_app_background: 'var(--grey_app_background)',
grey_border: 'var(--grey_border)',
grey_light: 'var(--grey_light)',
grey_primary: 'var(--grey_primary)',
grey_secondary: 'var(--grey_secondary)',
icon_grey: 'var(--icon_grey)',
nav_black: 'var(--nav_black)',
pink_primary: 'var(--pink_primary)',
pink_primary_transparent: 'var(--pink_primary_transparent)',
pink_secondary: 'var(--pink_secondary)',
pink_light: 'var(--pink_light)',
red_light: 'var(--red_light)',
red_primary: 'var(--red_primary)',
red_secondary: 'var(--red_secondary)',
aye_green: 'var(--aye_green)',
nay_red: 'var(--nay_red)',
comment_bg: 'var(--comment_bg)'
},
screens: {
'xs': '320px'
}
}
},
plugins: [],
corePlugins: {
preflight: false
}
};