-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
remove unused colors and classes #872
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@@ -20,7 +20,7 @@ export function Tabs({ | |||
<input | |||
key={id} | |||
className={classNames( | |||
"daisy-tab font-chakraPetch", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removed this as it looked strange having these tabs as a different font from the transactions table. I think this font looks good as the Market header and the Hero text on the landing. Curious your thoughts @DannyDelott?
aquamarine: { | ||
100: "#E8FFF7", | ||
DEFAULT: "#15FFAB", | ||
600: "#11cc89", | ||
}, | ||
"sky-blue": { | ||
100: "#95ECFF", | ||
DEFAULT: "#14D0F9", | ||
800: "#00A7CC", | ||
}, | ||
eggplant: { | ||
100: "#F3E9ED", | ||
DEFAULT: "#753F53", | ||
600: "#462632", | ||
}, | ||
|
||
// Used for primary buttons, links, tabs and states | ||
lime: { | ||
100: "#DFFF99", | ||
DEFAULT: "#BAFF29", | ||
800: "#8BCC00", | ||
}, | ||
// Used for interactive text and components such as tabs, tags and | ||
// sliders | ||
teal: { | ||
100: "#E8FCFC", | ||
DEFAULT: "#9BF3F0", | ||
800: "#49E9E4", | ||
900: "#16B6B1", | ||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we need to check the inline comments for the daisy theme – we should keep the colors we're using but not referencing directly from the tailwind theme.
@@ -3,37 +3,6 @@ module.exports = { | |||
content: ["./src/**/*.{js,ts,jsx,tsx,css}", "index.html"], | |||
theme: { | |||
colors: { | |||
aquamarine: { | |||
100: "#E8FFF7", | |||
DEFAULT: "#15FFAB", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the color we use for our primary
daisy color, we should keep it here since we reference it in the comment
No description provided.