Update theme colors

This commit is contained in:
2021-08-31 22:17:11 +02:00
parent fa8a90c117
commit 97bbd68031
17 changed files with 30 additions and 50 deletions

View File

@@ -1,4 +1,5 @@
import {defineConfig} from "windicss/helpers";
const colors = require('windicss/colors')
module.exports = defineConfig({
@@ -11,7 +12,7 @@ module.exports = defineConfig({
css: [
{
a: {
color: theme('colors.indigo.600'),
color: theme('colors.red.500'),
transitionDuration: '300ms',
cursor: 'pointer',
borderBottomColor: theme('colors.gray.200'),
@@ -20,7 +21,7 @@ module.exports = defineConfig({
borderBottomStyle: 'solid',
textDecoration: 'none',
'&:hover': {
borderBottomColor: theme('colors.indigo.600'),
borderBottomColor: theme('colors.red.500'),
}
}
}
@@ -34,7 +35,7 @@ module.exports = defineConfig({
color: theme('colors.gray.400'),
},
a: {
color: theme('colors.indigo.600'),
color: theme('colors.amber.400'),
transitionDuration: '300ms',
cursor: 'pointer',
borderBottomColor: theme('colors.gray.700'),
@@ -42,7 +43,7 @@ module.exports = defineConfig({
borderBottomStyle: 'solid',
textDecoration: 'none',
'&:hover': {
borderBottomColor: theme('colors.indigo.600'),
borderBottomColor: theme('colors.amber.400'),
}
},
strong: {