1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-18 19:01:40 +02:00

feat(admin-plugin): add custom grayscale #211

This commit is contained in:
Awilum
2020-01-22 22:47:39 +03:00
parent 6a30999971
commit 8191fe73d1

View File

@@ -1,5 +1,22 @@
module.exports = {
theme: {},
theme: {
extend: {
colors: {
gray: {
'000': '#f9f9f9',
'100': '#ededed',
'200': '#e1e1e1',
'300': '#d3d3d3',
'400': '#c4c4c4',
'500': '#b3b3b3',
'600': '#a0a0a0',
'700': '#898989',
'800': '#6c6c6c',
'800': '#3f3f3f',
}
}
}
},
variants: {},
plugins: [],
}