Skip to content

Commit

Permalink
types
Browse files Browse the repository at this point in the history
  • Loading branch information
ari-party committed Aug 23, 2024
1 parent 009bd42 commit bc7389b
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: Theme = {
export const darkTheme = {
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: Theme = {
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: Theme = {
export const lightTheme = {
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: Theme = {
accent: Color3.fromRGB(67, 147, 228),
font: Enum.Font.Arial,
fontBold: Enum.Font.ArialBold,
};
} as const satisfies Theme;

0 comments on commit bc7389b

Please sign in to comment.