Skip to content

Commit

Permalink
Remove CNY decorations (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
eltoder authored Feb 15, 2025
1 parent 0b9efc7 commit 7754a7a
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 50 deletions.
Binary file removed src/assets/cny_big_snake.png
Binary file not shown.
Binary file removed src/assets/cny_lanterns.png
Binary file not shown.
Binary file removed src/assets/cny_lion.png
Binary file not shown.
Binary file removed src/assets/cny_snake.png
Binary file not shown.
10 changes: 0 additions & 10 deletions src/components/Navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import Tooltip from "@material-ui/core/Tooltip";
import Typography from "@material-ui/core/Typography";
import SettingsIcon from "@material-ui/icons/Settings";

import snakeImage from "../assets/cny_snake.png";
import { version } from "../config";
import { SettingsContext, UserContext } from "../context";
import firebase from "../firebase";
Expand Down Expand Up @@ -74,15 +73,6 @@ function Navbar({
<InternalLink underline="none" color="inherit" to="/">
Set with Friends
</InternalLink>
<img
style={{
height: "1.1em",
verticalAlign: "text-top",
marginLeft: "0.1em",
}}
alt="It's a snake"
src={snakeImage}
/>
</Typography>
<Typography
variant="subtitle1"
Expand Down
40 changes: 0 additions & 40 deletions src/themes.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ import { indigo } from "@material-ui/core/colors";
import { red } from "@material-ui/core/colors";
import { createTheme } from "@material-ui/core/styles";

import snakeImage from "./assets/cny_big_snake.png";
import lanternsImage from "./assets/cny_lanterns.png";
import lionImage from "./assets/cny_lion.png";

export const darkTheme = createTheme({
palette: {
type: "dark",
Expand Down Expand Up @@ -66,24 +62,6 @@ export const darkTheme = createTheme({
row: "#282828",
},
setFoundEntry: "rgba(130, 170, 100, 0.15)",
overrides: {
MuiCssBaseline: {
"@global": {
body: {
backgroundImage: `
url("${lanternsImage}"),
url("${lionImage}"),
url("${snakeImage}"),
radial-gradient(circle at top right, rgba(112,22,22,1) 0%, rgba(22,22,22,1) 80%)
`,
backgroundPosition: "top right, bottom right, bottom left, 0 0",
backgroundSize: "min(50%, 25em), 30%, 80%, auto",
backgroundRepeat: "no-repeat",
backgroundAttachment: "fixed",
},
},
},
},
});

export const lightTheme = createTheme({
Expand Down Expand Up @@ -132,24 +110,6 @@ export const lightTheme = createTheme({
row: "#fff",
},
setFoundEntry: "rgba(130, 170, 100, 0.15)",
overrides: {
MuiCssBaseline: {
"@global": {
body: {
backgroundImage: `
url("${lanternsImage}"),
url("${lionImage}"),
url("${snakeImage}"),
radial-gradient(circle at top right, rgba(250, 250, 250, 1) 0%, rgba(250, 210, 210, 1) 80%)
`,
backgroundPosition: "top right, bottom right, bottom left, 0 0",
backgroundSize: "min(50%, 25em), 30%, 80%, auto",
backgroundRepeat: "no-repeat",
backgroundAttachment: "fixed",
},
},
},
},
});

export function withCardColors(theme, colors) {
Expand Down

0 comments on commit 7754a7a

Please sign in to comment.