Tema de la aplicacion

This commit is contained in:
Andres Alvarez 2024-01-29 08:32:14 -05:00
parent fbb8138a91
commit 72f75cdf40
3 changed files with 9 additions and 14 deletions

View File

@ -80,7 +80,7 @@ export const themesConfig: FuseThemesType = {
},
background: {
paper: '#1e293b',
default: '#111827'
default: '#081c44'
},
error: {
light: '#ffcdd2',

View File

@ -47,6 +47,7 @@ function NavbarStyle1Content(props: NavbarStyle1ContentProps) {
<div className="flex h-48 shrink-0 flex-row items-center px-20 md:h-72">
<div className="mx-4 flex flex-1">
<Logo />
{/* TODO LOGO */}
</div>
<NavbarToggleButton className="h-40 w-40 p-0" />
@ -63,7 +64,7 @@ function NavbarStyle1Content(props: NavbarStyle1ContentProps) {
<div className="flex-0 flex items-center justify-center py-48 opacity-10">
<img
className="w-full max-w-64"
src="assets/images/logo/logo.svg"
src="assets/images/logo/logo1.svg"
alt="footer logo"
/>
</div>

View File

@ -23,28 +23,22 @@ function Logo() {
<Root className="flex items-center">
<img
className="logo-icon h-32 w-32"
src="assets/images/logo/logo.svg"
src="assets/images/logo/logo1.svg"
alt="logo"
/>
<div className="flex space-x-8 items-center">
<div
className="badge flex items-center rounded px-8 py-4"
style={{ backgroundColor: '#121212', color: '#61DAFB' }}
className="badge flex items-center rounded px-1 py-4"
style={{ color: '#3cb1fe' }}
>
<img
className="react-badge"
src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0xMS41IC0xMC4yMzE3NCAyMyAyMC40NjM0OCI+CiAgPHRpdGxlPlJlYWN0IExvZ288L3RpdGxlPgogIDxjaXJjbGUgY3g9IjAiIGN5PSIwIiByPSIyLjA1IiBmaWxsPSIjNjFkYWZiIi8+CiAgPGcgc3Ryb2tlPSIjNjFkYWZiIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiPgogICAgPGVsbGlwc2Ugcng9IjExIiByeT0iNC4yIi8+CiAgICA8ZWxsaXBzZSByeD0iMTEiIHJ5PSI0LjIiIHRyYW5zZm9ybT0icm90YXRlKDYwKSIvPgogICAgPGVsbGlwc2Ugcng9IjExIiByeT0iNC4yIiB0cmFuc2Zvcm09InJvdGF0ZSgxMjApIi8+CiAgPC9nPgo8L3N2Zz4K"
alt="react"
width="16"
/>
<span className="react-text mx-4 text-12">React</span>
<p>softec Tecnologies</p>
</div>
<div
{/* <div
className="badge flex items-center rounded px-8 py-4"
style={{ backgroundColor: 'rgb(48,120,198)', color: '#ffffff' }}
>
<span className="react-text mx-4 text-12">TypeScript</span>
</div>
</div> */}
</div>
</Root>
);