Font size of city labels

Hi! I’m compiling OSM for Garmin using Generic new style. And I’d like to make the font size of city labels slightly bigger, at least the same as for street labels (see “Bilohorshcha” city label and others street labels in the picture for comparison).

Is it somehow possible to change it in the TYP file or city label size is an unchangeable Garmin property? My device is Edge 1030. Thanks.

Yes, you need to change FontStyle=SmallFont into FontStyle=Default in the TYP file in order to control it on your Garmin device. Or, use LargeFont:

[_point]
Type=0x004
SubType=0x00
String1=0x00,city
ExtendedLabels=Y
FontStyle=LargeFont
CustomColor=No
DayXpm="20 20 3 1"   Colormode=16
"!	c #FFFFFF"
"#	c #000000"
"  	c none"
"                    "
"                    "
"                    "
"                    "
"                    "
"                    "
"                    "
"         !!         "
"        !##!        "
"       !####!       "
"       !####!       "
"        !##!        "
"         !!         "
"                    "
"                    "
"                    "
"                    "
"                    "
"                    "
"                    "
;12345678901234567890
[end]

BTW the type values for other places are:
place=town 0x008
place=village 0x008
place=suburb 0x00a

ligfietser, many thanks for this! The thing is that these 4 types of points are present only in “generic” TYP file but not in “generic new”. So I simply added them there and set FontStyle=NormalFont and therefore got the same font size as for street names.