Skip to content

Commit

Permalink
feat: changed colour to blue
Browse files Browse the repository at this point in the history
  • Loading branch information
dg1223 committed Aug 6, 2023
1 parent 1333b66 commit a125a46
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
8 changes: 4 additions & 4 deletions App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ function App(): JSX.Element {
);
}

const RED_COLOR = 'red';
// const BLUE_COLOR = 'blue';
// const RED_COLOR = 'red';
const BLUE_COLOR = 'blue';
const styles = StyleSheet.create({
sectionHeader: {
padding: 85,
Expand All @@ -70,8 +70,8 @@ const styles = StyleSheet.create({
highlight: {
fontSize: 24,
fontWeight: '700',
// color: BLUE_COLOR,
color: RED_COLOR,
color: BLUE_COLOR,
// color: RED_COLOR,
},
});

Expand Down
3 changes: 3 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
{
"compilerOptions": {
"jsx": "react"
},
"extends": "@tsconfig/react-native/tsconfig.json"
}

0 comments on commit a125a46

Please sign in to comment.