-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
51 lines (48 loc) · 1.26 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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require( 'tailwindcss/defaultTheme' );
module.exports = {
content: [ "./src/components/**/*.{js,jsx,ts,tsx}", "./src/app/**/*.{js,jsx,ts,tsx,html}" ],
theme: {
colors: {
transparent: 'transparent',
current: 'currentColor',
black: '#504945',
blackDark: '#3c3836',
gray: '#7c6f64',
grayDark: '#a89984',
red: '#fb4934',
redDark: '#cc241d',
green: '#b8bb26',
greenDark: '#98971a',
yellow: '#fabd2f',
yellowDark: '#d79921',
blue: '#78bfbf',
blueDark: '#458588',
magenta: '#d3869b',
magentaDark: '#b16286',
cyan: '#8ec07c',
cyanDark: '#689d6a',
uiBackground: '#282828',
uiBackgroundDark: '#1d2021',
uiForeground: '#cdcdcd',
uiForegroundDark: '#bcbcbc',
uiAccent: '#928374',
uiAccentDark: '#3c3836',
uiWarning: '#fabd2f',
uiError: '#fb4934',
uiSuccess: '#b8bb26',
text: '#efefef',
textDark: '#677e81',
},
extend: {
screens: {
showSidebarBreakpoint: '960px',
showHeaderBreakpoint: '1100px'
},
fontFamily: {
'sans': [ 'Inter var', ...defaultTheme.fontFamily.sans ],
}
},
},
plugins: [],
};