We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a23602c commit 1375ffcCopy full SHA for 1375ffc
src/components/IconButton.js
@@ -1,8 +1,8 @@
1
import React from 'react';
2
3
const variants = {
4
- dark: 'text-gray-600 hover:text-gray-400',
5
- light: 'text-gray-400 hover:text-gray-600',
+ dark: 'text-gray-500 hover:text-gray-400',
+ light: 'text-gray-500 hover:text-gray-700',
6
white: 'text-white hover:text-white',
7
};
8
tailwind.config.js
@@ -1,3 +1,15 @@
+const { colors } = require('tailwindcss/defaultTheme');
+
module.exports = {
purge: false,
+ theme: {
+ extend: {
+ colors: {
+ gray: {
9
+ ...colors.gray,
10
+ 500: '#728DA7',
11
+ },
12
13
14
15
0 commit comments