1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-19 02:12:57 +08:00

Adjust title / artist font weight

This commit is contained in:
TheWildTree 2020-02-04 18:02:49 +01:00
parent 9bc45d21f1
commit 5eb1619e24

View File

@ -1,4 +1,4 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text. // See the LICENCE file in the repository root for full licence text.
using System.Linq; using System.Linq;
@ -134,7 +134,7 @@ namespace osu.Game.Overlays.BeatmapSet
{ {
title = new OsuSpriteText title = new OsuSpriteText
{ {
Font = OsuFont.GetFont(size: 37, weight: FontWeight.Bold, italics: true) Font = OsuFont.GetFont(size: 37, weight: FontWeight.SemiBold, italics: true)
}, },
externalLink = new ExternalLinkButton externalLink = new ExternalLinkButton
{ {
@ -144,7 +144,7 @@ namespace osu.Game.Overlays.BeatmapSet
}, },
} }
}, },
artist = new OsuSpriteText { Font = OsuFont.GetFont(size: 25, weight: FontWeight.SemiBold, italics: true) }, artist = new OsuSpriteText { Font = OsuFont.GetFont(size: 25, weight: FontWeight.Medium, italics: true) },
new Container new Container
{ {
RelativeSizeAxes = Axes.X, RelativeSizeAxes = Axes.X,