diff --git a/public/themes/catppuccinLatte.css b/public/themes/catppuccinLatte.css new file mode 100644 index 0000000..f48f618 --- /dev/null +++ b/public/themes/catppuccinLatte.css @@ -0,0 +1,29 @@ +@import url("https://fonts.googleapis.com/css2?family=Dongle&family=Roboto:wght@100&display=swap"); + +:root { + --background-primary: #eff1f5; + --background-lighter: #dce0e8; + --navbar-color: #dce0e8; + --navbar-height: 60px; + --navbar-text-color: #8839ef; + --navbar-link-color: #1e66f5; + --navbar-link-hover-color: #8839ef; + --navbar-font: "Roboto"; + --input-text-color: #4c4f69; + --input-placeholder-color: #5c5f77; + --input-background-color: #e6e9ef; + --input-border-color: #8839ef; + --input-border-size: 1.3px; + --navbar-logo-filter: none; + --dropdown-option-hover-color: #dce0e8; +} + +.font-inter { + font-family: "Inter", sans-serif; + font-weight: 300; +} + +.font-roboto { + font-family: "Roboto"; + color: #4c4f69 +} \ No newline at end of file diff --git a/src/locales/en.json b/src/locales/en.json index 3a74509..a47c5eb 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -68,6 +68,7 @@ "main": "Main", "catppuccinMocha": "Catppuccin Mocha", "catppuccinMacchiato": "Catppuccin Macchiato", - "catppuccinFrappe": "Catppuccin Frappe" + "catppuccinFrappe": "Catppuccin Frappe", + "catppuccinLatte": "Catppuccin Latte" } } diff --git a/src/locales/es.json b/src/locales/es.json index 8f06c3b..220347a 100644 --- a/src/locales/es.json +++ b/src/locales/es.json @@ -68,6 +68,7 @@ "main": "Por defecto", "catppuccinMocha": "Catppuccin Mocha", "catppuccinMacchiato": "Catppuccin Macchiato", - "catppuccinFrappe": "Catppuccin Frappe" + "catppuccinFrappe": "Catppuccin Frappe", + "catppuccinLatte": "Catppuccin Latte" } } diff --git a/src/locales/ja.json b/src/locales/ja.json index 91f352e..06636aa 100644 --- a/src/locales/ja.json +++ b/src/locales/ja.json @@ -68,6 +68,7 @@ "main": "デフォルト", "catppuccinMocha": "Catppuccin Mocha", "catppuccinMacchiato": "Catppuccin Macchiato", - "catppuccinFrappe": "Catppuccin Frappe" + "catppuccinFrappe": "Catppuccin Frappe", + "catppuccinLatte": "Catppuccin Latte" } } diff --git a/src/pages/Settings/Customization.tsx b/src/pages/Settings/Customization.tsx index 892fd6b..283b494 100644 --- a/src/pages/Settings/Customization.tsx +++ b/src/pages/Settings/Customization.tsx @@ -11,7 +11,8 @@ function Customization({ id, active }) { { id: "main", label: t("themes.main") }, { id: "catppuccinMocha", label: t("themes.catppuccinMocha") }, { id: "catppuccinMacchiato", label: t("themes.catppuccinMacchiato") }, - { id: "catppuccinFrappe", label: t("themes.catppuccinFrappe") } + { id: "catppuccinFrappe", label: t("themes.catppuccinFrappe") }, + { id: "catppuccinLatte", label: t("themes.catppuccinLatte") } ]; return (