Skip to content

Commit 4550771

Browse files
authored
Add holidays backgrounds (#182)
1 parent 4b12c2a commit 4550771

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

src/assets/holidays-dark.jpg

63.4 KB
Loading

src/assets/holidays-light.jpg

45.9 KB
Loading

src/assets/leaves-light.png

-40.4 KB
Binary file not shown.

src/themes.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import { blueGrey, grey, indigo, red } from "@material-ui/core/colors";
22
import { createTheme } from "@material-ui/core/styles";
33

4-
import leavesLightImage from "./assets/leaves-light.png";
4+
import holidaysDarkImage from "./assets/holidays-dark.jpg";
5+
import holidaysLightImage from "./assets/holidays-light.jpg";
56

67
export const darkTheme = createTheme({
78
palette: {
@@ -27,7 +28,7 @@ export const darkTheme = createTheme({
2728
background: {
2829
panel: "#303030",
2930
paper: "#262626",
30-
default: "#2c2c2c",
31+
default: "#161616",
3132
},
3233
},
3334
input: {
@@ -69,7 +70,7 @@ export const darkTheme = createTheme({
6970
MuiCssBaseline: {
7071
"@global": {
7172
body: {
72-
backgroundImage: `url("${leavesLightImage}")`,
73+
backgroundImage: `url("${holidaysDarkImage}")`,
7374
},
7475
},
7576
},
@@ -129,7 +130,7 @@ export const lightTheme = createTheme({
129130
MuiCssBaseline: {
130131
"@global": {
131132
body: {
132-
backgroundImage: `url("${leavesLightImage}")`,
133+
backgroundImage: `url("${holidaysLightImage}")`,
133134
},
134135
},
135136
},

0 commit comments

Comments
 (0)