Skip to content

Commit

Permalink
feat: change Gamchha text colour to blue
Browse files Browse the repository at this point in the history
  • Loading branch information
dg1223 committed Jul 26, 2023
1 parent 207f93b commit fa0695b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ function App(): JSX.Element {
);
}

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

Expand Down

0 comments on commit fa0695b

Please sign in to comment.