tutu/src/material/theme.ts

29 lines
748 B
TypeScript
Raw Normal View History

2024-07-14 12:28:44 +00:00
import { Theme, createTheme } from "@suid/material/styles";
2024-11-23 12:20:27 +00:00
import { deepPurple, amber, red } from "@suid/material/colors";
2024-07-14 12:28:44 +00:00
import { Accessor } from "solid-js";
/**
* The MUI theme.
*/
2024-08-05 07:33:00 +00:00
export function useRootTheme(): Accessor<Theme> {
return () =>
createTheme({
palette: {
primary: {
main: deepPurple[500],
},
2024-11-23 12:20:27 +00:00
error: {
main: red[900],
},
2024-08-05 07:33:00 +00:00
secondary: {
main: amber.A200,
},
2024-07-14 12:28:44 +00:00
},
2024-08-05 07:33:00 +00:00
});
2024-07-14 12:28:44 +00:00
}
export const ANIM_CURVE_STD = "cubic-bezier(0.4, 0, 0.2, 1)";
export const ANIM_CURVE_DECELERATION = "cubic-bezier(0, 0, 0.2, 1)";
export const ANIM_CURVE_ACELERATION = "cubic-bezier(0.4, 0, 1, 1)";
export const ANIM_CURVE_SHARP = "cubic-bezier(0.4, 0, 0.6, 1)";