Skip to content
This repository was archived by the owner on Sep 15, 2025. It is now read-only.

Commit f0a8d80

Browse files
committed
revert to normal type decs
1 parent 4e30b81 commit f0a8d80

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/themes/dark.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { Theme } from 'themes';
22

3-
export const darkTheme = {
3+
export const darkTheme: Theme = {
44
primary: Color3.fromRGB(250, 250, 250),
55
primary60: Color3.fromRGB(160, 160, 161),
66
background: Color3.fromRGB(24, 26, 27),
@@ -9,4 +9,4 @@ export const darkTheme = {
99
accent: Color3.fromRGB(67, 147, 228),
1010
font: Enum.Font.Arial,
1111
fontBold: Enum.Font.ArialBold,
12-
} as const satisfies Theme;
12+
};

src/themes/light.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { Theme } from 'themes';
22

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

0 commit comments

Comments
 (0)