Skip to content

Feature/enhancement of hoverinig buttons #2883

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

Merged
merged 7 commits into from
Jun 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions client/theme.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const colors = {
lightsteelblue: '#B0C4DE',
dodgerblue: '#1E90FF',
p5ContrastPink: ' #FFA9D9',

p5ContrastYellow: '#fff001',
borderColor: ' #B5B5B5',
outlineColor: '#0F9DD7'
};
Expand Down Expand Up @@ -107,7 +107,7 @@ const baseThemes = {
},
hover: {
foreground: grays.lightest,
background: colors.p5jsPink,
background: colors.p5jsActivePink,
border: colors.p5jsPink
},
active: {
Expand Down Expand Up @@ -194,8 +194,8 @@ const baseThemes = {
},
hover: {
foreground: grays.lightest,
background: colors.p5jsPink,
border: colors.p5jsPink
background: colors.p5jsActivePink,
border: colors.p5jsActivePink
},
active: {
foreground: grays.lightest,
Expand Down Expand Up @@ -253,8 +253,8 @@ export default {
primary: {
hover: {
foreground: grays.dark,
background: colors.yellow,
border: colors.yellow
background: colors.p5ContrastYellow,
border: colors.p5ContrastYellow
},
active: {
foreground: grays.dark
Expand All @@ -268,8 +268,8 @@ export default {
},
hover: {
foreground: grays.dark,
background: colors.yellow,
border: colors.yellow
background: colors.p5ContrastYellow,
border: colors.p5ContrastYellow
},
active: {
foreground: grays.dark
Expand Down
Loading