mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 05:43:46 +03:00
130 lines
2.8 KiB
Lua
130 lines
2.8 KiB
Lua
--[[
|
|
| This file was obtained through the combined efforts
|
|
| of Madbluntz & Plymouth Antiquarian Society.
|
|
|
|
|
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
|
| Maloy, DrPepper10 @ RIP, Atle!
|
|
|
|
|
| Visit for more: https://plymouth.thetwilightzone.ru/
|
|
--]]
|
|
|
|
surface.CreateFont( "SF_Display_H", {
|
|
font = "Arial", -- Use the font-name which is shown to you by your operating system Font Viewer, not the file name
|
|
extended = true,
|
|
size = 30,
|
|
weight = 500,
|
|
blursize = 0,
|
|
scanlines = 0,
|
|
antialias = true,
|
|
underline = false,
|
|
italic = false,
|
|
strikeout = false,
|
|
symbol = false,
|
|
rotary = false,
|
|
shadow = false,
|
|
additive = false,
|
|
outline = false,
|
|
} )
|
|
|
|
surface.CreateFont( "SF_Display_H2", {
|
|
font = "Arial", -- Use the font-name which is shown to you by your operating system Font Viewer, not the file name
|
|
extended = true,
|
|
size = 20,
|
|
weight = 500,
|
|
blursize = 0,
|
|
scanlines = 0,
|
|
antialias = true,
|
|
underline = false,
|
|
italic = false,
|
|
strikeout = false,
|
|
symbol = false,
|
|
rotary = false,
|
|
shadow = false,
|
|
additive = false,
|
|
outline = false,
|
|
} )
|
|
|
|
surface.CreateFont( "SF_Display_H3", {
|
|
font = "Arial", -- Use the font-name which is shown to you by your operating system Font Viewer, not the file name
|
|
extended = true,
|
|
size = 14,
|
|
weight = 500,
|
|
blursize = 0,
|
|
scanlines = 0,
|
|
antialias = true,
|
|
underline = false,
|
|
italic = false,
|
|
strikeout = false,
|
|
symbol = false,
|
|
rotary = false,
|
|
shadow = false,
|
|
additive = false,
|
|
outline = false,
|
|
} )
|
|
|
|
surface.CreateFont( "SF_Menu_H2", {
|
|
font = "coolvetica", -- Use the font-name which is shown to you by your operating system Font Viewer, not the file name
|
|
extended = false,
|
|
size = 20,
|
|
weight = 500,
|
|
blursize = 0,
|
|
scanlines = 0,
|
|
antialias = true,
|
|
underline = false,
|
|
italic = false,
|
|
strikeout = false,
|
|
symbol = false,
|
|
rotary = false,
|
|
shadow = false,
|
|
additive = false,
|
|
outline = false,
|
|
} )
|
|
|
|
surface.CreateFont( "SkyFox-DigitalClock", {
|
|
font = "Arial", -- Use the font-name which is shown to you by your operating system Font Viewer, not the file name
|
|
extended = false,
|
|
size = 50,
|
|
weight = 500,
|
|
blursize = 0,
|
|
scanlines = 0,
|
|
antialias = true,
|
|
underline = false,
|
|
italic = false,
|
|
strikeout = false,
|
|
symbol = false,
|
|
rotary = false,
|
|
shadow = false,
|
|
additive = false,
|
|
outline = false,
|
|
} )
|
|
|
|
surface.CreateFont("SF2.W_Button", {
|
|
font = "Tahoma",
|
|
size = 15,
|
|
weight = 1500,
|
|
})
|
|
|
|
-- Tool
|
|
surface.CreateFont( "sf_tool_large", {
|
|
font = "Verdana", -- Use the font-name which is shown to you by your operating system Font Viewer, not the file name
|
|
extended = false,
|
|
size = 30,
|
|
weight = 700,
|
|
blursize = 0,
|
|
scanlines = 0,
|
|
antialias = true,
|
|
underline = false,
|
|
italic = false,
|
|
strikeout = false,
|
|
symbol = false,
|
|
rotary = false,
|
|
shadow = false,
|
|
additive = false,
|
|
outline = true,
|
|
} )
|
|
|
|
surface.CreateFont( "sf_tool_small", {
|
|
font = "Verdana",
|
|
size = 17,
|
|
weight = 1000
|
|
} ) |