Risuai 0.6.3 first commit
This commit is contained in:
43
tailwind.config.js
Normal file
43
tailwind.config.js
Normal file
@@ -0,0 +1,43 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: [
|
||||
"./index.html",
|
||||
"./src/**/*.{js,ts,jsx,tsx,svelte}",
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
colors:{
|
||||
bgcolor: "#282a36",
|
||||
darkbg: "#21222C",
|
||||
borderc: "#6272a4",
|
||||
selected: "#44475a",
|
||||
draculared: "#ff5555"
|
||||
},
|
||||
minWidth: {
|
||||
'20': '5rem',
|
||||
'14': '3.5rem',
|
||||
'half': '50%'
|
||||
},
|
||||
maxWidth:{
|
||||
'half': '50%',
|
||||
'14': '3.5rem',
|
||||
},
|
||||
borderWidth: {
|
||||
'1': '1px',
|
||||
},
|
||||
width: {
|
||||
'2xl': '48rem',
|
||||
},
|
||||
minHeight:{
|
||||
'8': '2rem',
|
||||
'14': '3.5rem',
|
||||
'20': '5rem',
|
||||
|
||||
}
|
||||
}
|
||||
},
|
||||
plugins: [
|
||||
require('@tailwindcss/typography')
|
||||
],
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user