Skip to content

Commit

Permalink
Added new fonts, updated text widgets
Browse files Browse the repository at this point in the history
  • Loading branch information
GreyLabsDev committed Aug 26, 2024
1 parent d56569e commit 8f8d1b2
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 8 deletions.
Binary file added fonts/Nohemi-Light.ttf
Binary file not shown.
Binary file added fonts/Nohemi-Medium.ttf
Binary file not shown.
Binary file added fonts/Nohemi-Regular.ttf
Binary file not shown.
16 changes: 8 additions & 8 deletions lib/resources/Resources.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,52 +15,52 @@ class TextStylesContent {
color: Color(0xffffffff),
// color: Color(0xff6EA1A9),
fontSize: 16.0,
fontFamily: 'LackRegular',
fontFamily: 'NohemiLight',
letterSpacing: 1.0);

static const Content = TextStyle(
color: Color(0xffffffff),
// color: Color(0xff6EA1A9),
fontSize: 18.0,
fontFamily: 'LackRegular',
fontFamily: 'NohemiRegular',
letterSpacing: 1.0);

static const ContentMain = TextStyle(
color: Color(0xffffffff),
fontSize: 18.0,
fontFamily: 'LackRegular',
fontFamily: 'NohemiRegular',
letterSpacing: 1.0);

static const ContentBlck = TextStyle(
color: Colors.black,
fontSize: 18.0,
fontFamily: 'LackRegular',
fontFamily: 'NohemiRegular',
letterSpacing: 1.0);

static const Subtitle = TextStyle(
color: Color(0xffffffff),
// color: Color(0xff6EA1A9),
fontSize: 26.0,
fontFamily: 'LackRegular',
fontFamily: 'NohemiMedium',
letterSpacing: 1.0);

static const Title = TextStyle(
color: Color(0xffffffff),
fontSize: 32.0,
fontFamily: 'LackRegular',
fontFamily: 'NohemiMedium',
letterSpacing: 1.0);

static const TitleBig = TextStyle(
color: Color(0xffffffff),
// color: Color(0xff6EA1A9),
fontSize: 42.0,
fontFamily: 'LackRegular',
fontFamily: 'NohemiMedium',
letterSpacing: 1.0);

static const TitleBigLine = TextStyle(
color: Color(0xffffffff),
fontSize: 42.0,
fontFamily: 'LackRegularLine',
fontFamily: 'NohemiMedium',
letterSpacing: 1.0);

}
Expand Down
12 changes: 12 additions & 0 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,18 @@ flutter:
fonts:
- asset: fonts/EBENYA.ttf
weight: 700
- family: NohemiLight
fonts:
- asset: fonts/Nohemi-Light.ttf
weight: 300
- family: NohemiRegular
fonts:
- asset: fonts/Nohemi-Regular.ttf
weight: 400
- family: NohemiMedium
fonts:
- asset: fonts/Nohemi-Medium.ttf
weight: 500
# To add assets to your application, add an assets section, like this:
assets:
- assets/img/button_bg_skills.png
Expand Down

0 comments on commit 8f8d1b2

Please sign in to comment.