Skip to content

Commit e607944

Browse files
committed
Update colors
1 parent 4f39c7c commit e607944

File tree

2 files changed

+15
-7
lines changed

2 files changed

+15
-7
lines changed

web/src/components/ActionBar.jsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { AppBar, Toolbar, IconButton, Typography, Box, MenuItem, Button, Divider, ListItemIcon } from "@mui/material";
1+
import { AppBar, Toolbar, IconButton, Typography, Box, MenuItem, Button, Divider, ListItemIcon, useTheme } from "@mui/material";
22
import MenuIcon from "@mui/icons-material/Menu";
33
import * as React from "react";
44
import { useState } from "react";
@@ -21,6 +21,7 @@ import PopupMenu from "./PopupMenu";
2121
import { SubscriptionPopup } from "./SubscriptionPopup";
2222

2323
const ActionBar = (props) => {
24+
const theme = useTheme();
2425
const { t } = useTranslation();
2526
const location = useLocation();
2627
let title = "ntfy";
@@ -43,7 +44,7 @@ const ActionBar = (props) => {
4344
<Toolbar
4445
sx={{
4546
pr: "24px",
46-
background: "linear-gradient(150deg, rgba(51,133,116,1) 0%, rgba(86,189,168,1) 100%)",
47+
background: theme.palette.actionBarBackground,
4748
}}
4849
>
4950
<IconButton

web/src/components/theme.js

+12-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import { grey, red } from "@mui/material/colors";
2-
31
/** @type {import("@mui/material").ThemeOptions} */
42
const themeOptions = {
53
components: {
@@ -22,6 +20,8 @@ const themeOptions = {
2220
},
2321
};
2422

23+
// https://github.com/binwiederhier/ntfy-android/blob/main/app/src/main/res/values/colors.xml
24+
2525
/** @type {import("@mui/material").ThemeOptions['palette']} */
2626
export const lightPalette = {
2727
mode: "light",
@@ -32,20 +32,27 @@ export const lightPalette = {
3232
main: "#6cead0",
3333
},
3434
error: {
35-
main: red.A400,
35+
main: "#c30000",
3636
},
37+
actionBarBackground: "linear-gradient(150deg, #338574 0%, #56bda8 100%)",
3738
};
3839

3940
/** @type {import("@mui/material").ThemeOptions['palette']} */
4041
export const darkPalette = {
41-
...lightPalette,
4242
mode: "dark",
4343
background: {
44-
paper: grey["800"],
44+
paper: "#1b2124",
4545
},
4646
primary: {
47+
main: "#65b5a3",
48+
},
49+
secondary: {
4750
main: "#6cead0",
4851
},
52+
error: {
53+
main: "#fe4d2e",
54+
},
55+
actionBarBackground: "linear-gradient(150deg, #203631 0%, #2a6e60 100%)",
4956
};
5057

5158
export default themeOptions;

0 commit comments

Comments
 (0)