forked from stephancill/opencast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
60 lines (58 loc) · 2.14 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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme');
const modConfig = require('@mod-protocol/react-ui-shadcn/tailwind.config');
module.exports = {
darkMode: 'class',
content: [
'src/pages/**/*.tsx',
'src/components/**/*.tsx',
// Mod Protocol
'./node_modules/@mod-protocol/react-ui-shadcn/dist/**/*.{ts,tsx,css,js}'
],
theme: {
screens: {
xs: '500px',
...defaultTheme.screens
},
extend: {
...modConfig.theme.extend,
fontFamily: {
...modConfig.theme.extend.fontFamily,
'twitter-chirp': ['TwitterChirp', 'sans-serif'],
'twitter-chirp-extended': ['TwitterChirpExtendedHeavy', 'sans-serif']
},
// prettier-ignore
colors: {
'main-primary': 'rgb(var(--main-primary) / <alpha-value>)',
'main-secondary': 'rgb(var(--main-secondary) / <alpha-value>)',
'main-background': 'rgb(var(--main-background) / <alpha-value>)',
'main-search-background': 'rgb(var(--main-search-background) / <alpha-value>)',
'main-sidebar-background': 'rgb(var(--main-sidebar-background) / <alpha-value>)',
'main-accent': 'rgb(var(--main-accent) / <alpha-value>)',
'accent-yellow': 'rgb(var(--accent-yellow) / <alpha-value>)',
'accent-blue': 'rgb(var(--accent-blue) / <alpha-value>)',
'accent-pink': 'rgb(var(--accent-pink) / <alpha-value>)',
'accent-purple': 'rgb(var(--accent-purple) / <alpha-value>)',
'accent-orange': 'rgb(var(--accent-orange) / <alpha-value>)',
'accent-green': 'rgb(var(--accent-green) / <alpha-value>)',
'accent-red': '#F4212E',
'dark-primary': '#E7E9EA',
'dark-secondary': '#71767B',
'light-primary': '#0F1419',
'light-secondary': '#536471',
'dark-border': '#2F3336',
'light-border': '#EFF3F4',
'dark-line-reply': '#333639',
'light-line-reply': '#CFD9DE',
'twitter-icon': '#D6D9DB',
'image-preview-hover': '#272C30',
...modConfig.theme.extend.colors,
}
}
},
plugins: [
({ addVariant }) => {
addVariant('inner', '& > *');
}
]
};