diff --git a/lib/components/PenaLink.tsx b/lib/components/PenaLink.tsx index d7045af..09fb780 100644 --- a/lib/components/PenaLink.tsx +++ b/lib/components/PenaLink.tsx @@ -14,10 +14,14 @@ export function PenaLink(props: LinkProps) { gap: "3px", textUnderlinePosition: "under", color: theme.palette.purple.main, - textDecorationColor: theme.palette.purple.main, - textUnderlineOffset: "3px", + textDecorationColor: theme.palette.purple.dark, + textUnderlineOffset: "2px", + "&:hover": { + textDecorationColor: theme.palette.purple.main, + }, "&:active": { - color: "#FFFFFF", + color: "white", + textDecorationColor: "white", }, } }, props)} diff --git a/lib/components/theme.ts b/lib/components/theme.ts index 158ea09..d9c9544 100644 --- a/lib/components/theme.ts +++ b/lib/components/theme.ts @@ -27,7 +27,8 @@ export const penaMuiTheme = createTheme({ default: "#F2F3F7", }, purple: { - main: "#7E2AEA", // from brightPurple + main: "#944FEE", + dark: "#7E2AEA", // from brightPurple -> from purple.main light: "#C19AF5", // from fadePurple }, bg: { @@ -224,6 +225,16 @@ export const penaMuiTheme = createTheme({ } }, }, + MuiAlert: { + styleOverrides: { + filledError: { + backgroundColor: "#FB5607", + }, + root: { + borderRadius: "8px", + } + } + }, }, typography: palette => ({ h5: { diff --git a/package.json b/package.json index 8d2c17a..23de674 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@frontend/kitui", - "version": "1.0.30", + "version": "1.0.31", "description": "test", "main": "./dist/index.js", "module": "./dist/index.js", diff --git a/src/App.tsx b/src/App.tsx index fb7a1a2..5c2bd5a 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -100,6 +100,11 @@ export function App() { +