Skip to content

Commit

Permalink
feat: color config
Browse files Browse the repository at this point in the history
  • Loading branch information
mrevanzak committed Oct 29, 2023
1 parent 0721262 commit 229df44
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions apps/expo/src/utils/constant.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { Colors } from "react-native-ui-lib";

const colors = {
primary: "#157DC1",
secondary: "#FDBC12",
} as const;

Colors.loadColors({
primary: colors.primary,
secondary: colors.secondary,
});

0 comments on commit 229df44

Please sign in to comment.