feat(tailwind): add new colors and list style types

This commit is contained in:
Stefan Imhoff
2023-04-05 15:32:34 +02:00
parent dbce8614aa
commit 58336ccd73

View File

@@ -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)',
},