Skip to content

Commit

Permalink
fuck CI
Browse files Browse the repository at this point in the history
  • Loading branch information
JMBeresford committed Aug 9, 2023
1 parent 327cac6 commit b087fd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion experiments/retro-gaming/src/utils/colors.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export function hexToBrightness(hex: string): number {
export function hexToBrightness(hex: string) {
const r = parseInt(hex.slice(1, 3), 16) / 255;
const g = parseInt(hex.slice(3, 5), 16) / 255;
const b = parseInt(hex.slice(5, 7), 16) / 255;
Expand Down

0 comments on commit b087fd2

Please sign in to comment.