Skip to content
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

Feedback Slice, QuoteBubble and some Redux stuff #178

Merged
merged 17 commits into from
May 11, 2024
Merged
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
9b9ff01
[Client] TCCPISSUE: Refactor Navbar Drawer #141: [Clean-up] refactor:…
ballyalley-o May 11, 2024
8d1b134
Redux | Feedback Slice #17: Add FEEDBACK route to routing constants
ballyalley-o May 11, 2024
6d9f048
Add FEEDBACKS and TAGS labels to constant/label.ts
ballyalley-o May 11, 2024
4d3771a
update placeholder.ts
ballyalley-o May 11, 2024
23f6901
refactor: Adjust padding in main.tsx
ballyalley-o May 11, 2024
986b66f
Optimized Bootcamp page with lazy loading for images
ballyalley-o May 11, 2024
9b2d1d1
feat: Add BOOTCAMP_FEEDBACK route to ServerPath class
ballyalley-o May 11, 2024
070691e
[Client] Feat: Feedback Quote buble #171: Add FeedbackBubble compone…
ballyalley-o May 11, 2024
119ad12
[Client] Feat: Feedback Quote buble #171: Add FeedbackBubble compone…
ballyalley-o May 11, 2024
f47ceb6
chore: Remove unused Bootcamp component and export statement
ballyalley-o May 11, 2024
2197a5a
feat: Add QuoteBubble component for displaying feedback quotes
ballyalley-o May 11, 2024
f391ed6
Slices-reducer: Bootcamp - Feedback
ballyalley-o May 11, 2024
06d2a84
Redux | Feedback Slice #17: Add feedback endpoint and slice for API i…
ballyalley-o May 11, 2024
87eee18
🎈 perf(Redux | Feedback Slice #17: Add feedbackReducer to root-reduce…
ballyalley-o May 11, 2024
94aeda0
chore: Update main.ts to include flex display and transparent backgro…
ballyalley-o May 11, 2024
6fada9b
refactor: Update palette.ts to fix primary and background colors
ballyalley-o May 11, 2024
4463a33
🐳 chore(chore: Update npm dependencies):
ballyalley-o May 11, 2024
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
Prev Previous commit
Next Next commit
refactor: Update palette.ts to fix primary and background colors
ballyalley-o committed May 11, 2024
commit 6fada9bc37e753f2c506b3f3129e4abc11602e56
6 changes: 3 additions & 3 deletions src/theme/palette.ts
Original file line number Diff line number Diff line change
@@ -60,15 +60,15 @@ const COMMON = {

export default function palettee(mode: KEY.LIGHT | KEY.DARK = KEY.DARK) {
const text = {
primary: mode === KEY.DARK ? GREY[0] : GREY[900],
primary: mode === KEY.DARK ? GREY[100] : GREY[900],
secondary: GREY[500],
disabled: GREY[600]
}

const background = {
paper: mode === 'dark' ? GREY[800] : GREY[100],
paper: mode === 'dark' ? GREY[800] : GREY[800],
default: mode === 'dark' ? GREY[900] : 'common.white',
neutral: mode === 'dark' ? alpha(GREY[500], 0.16) : alpha(GREY[500], 1)
neutral: mode === 'dark' ? alpha(GREY[500], 0.16) : alpha(GREY[900], 1)
}

return {