+
diff --git a/src/styles/themes/default.css b/src/styles/default.css
similarity index 100%
rename from src/styles/themes/default.css
rename to src/styles/default.css
diff --git a/src/styles/global.css b/src/styles/global.css
index 99e6ca0..35e6ca4 100644
--- a/src/styles/global.css
+++ b/src/styles/global.css
@@ -1,12 +1,5 @@
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
-/* Themes belong here */
-@import "./themes/default.css"; /* DO NOT MOVE THIS FROM HERE OTHERWISE, THEMES WILL FAIL TO WORK */
-@import "./themes/bluelight.css";
-@import "./themes/cyberpunk.css";
-@import "./themes/midnight.css";
-/* End theme imports */
-
@import "tailwindcss";
@theme {
diff --git a/src/utils/types.ts b/src/utils/types.ts
index 6f7d76c..5d5d401 100644
--- a/src/utils/types.ts
+++ b/src/utils/types.ts
@@ -4,4 +4,16 @@ interface SettingsProps extends Props {
active: 'appearance' | 'credits' | 'links' | 'proxy';
}
-export type { SettingsProps };
+type DropdownOptions = {
+ name: string;
+ value: string;
+ default?: boolean;
+};
+
+const SearchEngines: Record
= {
+ DuckDuckGo: "https://duckduckgo.com/?q=%s",
+ Google: "https://google.com/search?q=%s",
+ Bing: "https://bing.com/search?q=%s",
+};
+
+export { type SettingsProps, type DropdownOptions, SearchEngines };