diff --git a/tailwind.config.cjs b/tailwind.config.cjs index 74b9808..3d2ef80 100644 --- a/tailwind.config.cjs +++ b/tailwind.config.cjs @@ -12,6 +12,7 @@ module.exports = { }, colors: { accent: '#e60510', + marked: '#E6F028', shibui: { 50: '#f3f3f1', 100: '#e6e6e3', @@ -33,6 +34,10 @@ module.exports = { 900: '#1b1917', 950: '#0e0d0c', }, + code: { + 1: '#282c34', + 2: '#abb2bf', + }, }, gridTemplateColumns: { 10: 'repeat(10, minmax(0, 1fr))', @@ -132,6 +137,11 @@ module.exports = { beveled: '0 1px 0 rgb(0 0 0 / 0.2), inset 0 0 0 2px #ffffff', darkInset: 'inset 0 0 0 1px rgb(0 0 0 / 0.2)', }, + listStyleType: { + none: 'none', + decimal: 'decimal', + square: 'square', + }, dropShadow: { subtle: 'inset 0 0 5px rgb(0 0 0 / 0.15)', },