Skip to content

Commit

Permalink
revert to normal type decs
Browse files Browse the repository at this point in the history
  • Loading branch information
ari-party committed Aug 24, 2024
1 parent 4e30b81 commit f0a8d80
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/themes/dark.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Theme } from 'themes';

export const darkTheme = {
export const darkTheme: Theme = {
primary: Color3.fromRGB(250, 250, 250),
primary60: Color3.fromRGB(160, 160, 161),
background: Color3.fromRGB(24, 26, 27),
Expand All @@ -9,4 +9,4 @@ export const darkTheme = {
accent: Color3.fromRGB(67, 147, 228),
font: Enum.Font.Arial,
fontBold: Enum.Font.ArialBold,
} as const satisfies Theme;
};
4 changes: 2 additions & 2 deletions src/themes/light.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Theme } from 'themes';

export const lightTheme = {
export const lightTheme: Theme = {
primary: Color3.fromRGB(19, 20, 20),
primary60: Color3.fromRGB(113, 114, 114),
background: Color3.fromRGB(255, 255, 255),
Expand All @@ -9,4 +9,4 @@ export const lightTheme = {
accent: Color3.fromRGB(67, 147, 228),
font: Enum.Font.Arial,
fontBold: Enum.Font.ArialBold,
} as const satisfies Theme;
};

0 comments on commit f0a8d80

Please sign in to comment.