Skip to content

Commit 8f8d1b2

Browse files
committed
Added new fonts, updated text widgets
1 parent d56569e commit 8f8d1b2

File tree

5 files changed

+20
-8
lines changed

5 files changed

+20
-8
lines changed

fonts/Nohemi-Light.ttf

63.8 KB
Binary file not shown.

fonts/Nohemi-Medium.ttf

63.2 KB
Binary file not shown.

fonts/Nohemi-Regular.ttf

63.3 KB
Binary file not shown.

lib/resources/Resources.dart

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,52 +15,52 @@ class TextStylesContent {
1515
color: Color(0xffffffff),
1616
// color: Color(0xff6EA1A9),
1717
fontSize: 16.0,
18-
fontFamily: 'LackRegular',
18+
fontFamily: 'NohemiLight',
1919
letterSpacing: 1.0);
2020

2121
static const Content = TextStyle(
2222
color: Color(0xffffffff),
2323
// color: Color(0xff6EA1A9),
2424
fontSize: 18.0,
25-
fontFamily: 'LackRegular',
25+
fontFamily: 'NohemiRegular',
2626
letterSpacing: 1.0);
2727

2828
static const ContentMain = TextStyle(
2929
color: Color(0xffffffff),
3030
fontSize: 18.0,
31-
fontFamily: 'LackRegular',
31+
fontFamily: 'NohemiRegular',
3232
letterSpacing: 1.0);
3333

3434
static const ContentBlck = TextStyle(
3535
color: Colors.black,
3636
fontSize: 18.0,
37-
fontFamily: 'LackRegular',
37+
fontFamily: 'NohemiRegular',
3838
letterSpacing: 1.0);
3939

4040
static const Subtitle = TextStyle(
4141
color: Color(0xffffffff),
4242
// color: Color(0xff6EA1A9),
4343
fontSize: 26.0,
44-
fontFamily: 'LackRegular',
44+
fontFamily: 'NohemiMedium',
4545
letterSpacing: 1.0);
4646

4747
static const Title = TextStyle(
4848
color: Color(0xffffffff),
4949
fontSize: 32.0,
50-
fontFamily: 'LackRegular',
50+
fontFamily: 'NohemiMedium',
5151
letterSpacing: 1.0);
5252

5353
static const TitleBig = TextStyle(
5454
color: Color(0xffffffff),
5555
// color: Color(0xff6EA1A9),
5656
fontSize: 42.0,
57-
fontFamily: 'LackRegular',
57+
fontFamily: 'NohemiMedium',
5858
letterSpacing: 1.0);
5959

6060
static const TitleBigLine = TextStyle(
6161
color: Color(0xffffffff),
6262
fontSize: 42.0,
63-
fontFamily: 'LackRegularLine',
63+
fontFamily: 'NohemiMedium',
6464
letterSpacing: 1.0);
6565

6666
}

pubspec.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,18 @@ flutter:
7373
fonts:
7474
- asset: fonts/EBENYA.ttf
7575
weight: 700
76+
- family: NohemiLight
77+
fonts:
78+
- asset: fonts/Nohemi-Light.ttf
79+
weight: 300
80+
- family: NohemiRegular
81+
fonts:
82+
- asset: fonts/Nohemi-Regular.ttf
83+
weight: 400
84+
- family: NohemiMedium
85+
fonts:
86+
- asset: fonts/Nohemi-Medium.ttf
87+
weight: 500
7688
# To add assets to your application, add an assets section, like this:
7789
assets:
7890
- assets/img/button_bg_skills.png

0 commit comments

Comments
 (0)