-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge : 다크모드 구현
- Loading branch information
Showing
8 changed files
with
71 additions
and
9 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { createSlice } from "@reduxjs/toolkit"; | ||
|
||
const darkModeSlice = createSlice({ | ||
name: "darkMode", | ||
initialState: { | ||
isDark: true, | ||
}, | ||
reducers: { | ||
toggleDarkMode: (state) => { | ||
state.isDark = !state.isDark; | ||
}, | ||
}, | ||
}); | ||
|
||
export const { toggleDarkMode } = darkModeSlice.actions; | ||
|
||
export default darkModeSlice.reducer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
import { combineReducers } from "@reduxjs/toolkit"; | ||
import user from "./user"; | ||
import darkmode from "./darkmode"; | ||
|
||
const reducer = combineReducers({ | ||
user, | ||
darkmode, | ||
}); | ||
|
||
export default reducer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
export const dark = { | ||
bgColor: "rgb(21, 25, 42)", | ||
boxBgColor: "#1d1f33", | ||
textColor: "white", | ||
}; | ||
|
||
export const light = { | ||
bgColor: "rgb(233, 236, 241)", | ||
boxBgColor: "white", | ||
textColor: "black", | ||
}; |