mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-02-02 16:23:48 +03:00
refactor: reset default theme colors to empty strings
This commit is contained in:
parent
15746a5598
commit
e4631bba7b
@ -10,7 +10,10 @@ interface ThemeActionsProps {
|
||||
themesCount: number;
|
||||
}
|
||||
|
||||
export const ThemeActions = ({ onListUpdated, themesCount }: ThemeActionsProps) => {
|
||||
export const ThemeActions = ({
|
||||
onListUpdated,
|
||||
themesCount,
|
||||
}: ThemeActionsProps) => {
|
||||
const { t } = useTranslation("settings");
|
||||
|
||||
const [addThemeModalVisible, setAddThemeModalVisible] = useState(false);
|
||||
|
@ -42,9 +42,9 @@ export const AddThemeModal = ({
|
||||
author: userDetails?.id || undefined,
|
||||
authorName: userDetails?.username || undefined,
|
||||
colors: {
|
||||
accent: "#c0c1c7",
|
||||
background: "#1c1c1c",
|
||||
surface: "#151515",
|
||||
accent: "",
|
||||
background: "",
|
||||
surface: "",
|
||||
},
|
||||
code: "",
|
||||
createdAt: new Date(),
|
||||
|
Loading…
Reference in New Issue
Block a user