Quantum is a Garry's Mod RPG framework.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
quantum/gamemode/engine/core/client/cl_fonts.lua

194 lines
4.2 KiB

-- __ _ _______ _ __
-- / / /\ | | |__ __| | | \ \
-- / / / \ | |_ __ ___ | | ___ ___| |__ \ \
-- < < / /\ \ | | '_ ` _ \| |/ _ \/ __| '_ \ > >
-- \ \ / ____ \| | | | | | | | __/ (__| | | | / /
-- \_\ /_/ \_\_|_| |_| |_|_|\___|\___|_| |_| /_/
surface.CreateFont( "q_HUD", {
font = "Arial",
size = 30 * Quantum.Client.ResolutionScale,
antialias = true,
outline = true
})
surface.CreateFont( "q_text", {
font = "Arial",
size = 22 * Quantum.Client.ResolutionScale,
antialias = true
})
surface.CreateFont( "q_text2", {
font = "Arial",
size = 26 * Quantum.Client.ResolutionScale,
antialias = true
})
surface.CreateFont( "q_button", {
font = "Arial",
size = 27 * Quantum.Client.ResolutionScale,
antialias = true
})
surface.CreateFont( "q_button_m", {
font = "Arial",
size = 30 * Quantum.Client.ResolutionScale,
antialias = true
})
surface.CreateFont( "q_button2", {
font = "Arial",
size = 35 * Quantum.Client.ResolutionScale,
antialias = true
})
surface.CreateFont( "q_button_l", {
font = "Arial",
size = 45 * Quantum.Client.ResolutionScale,
antialias = true
})
surface.CreateFont( "q_charNameText", {
font = "Arial",
outline = true,
size = 28 * Quantum.Client.ResolutionScale,
antialias = true
})
surface.CreateFont( "q_info", {
font = "Arial",
size = 30 * Quantum.Client.ResolutionScale,
antialias = true
})
surface.CreateFont( "q_header", {
font = "Constantia Bold Italic",
size = 50 * Quantum.Client.ResolutionScale,
antialias = true
})
surface.CreateFont( "q_header_s", {
font = "Constantia Bold Italic",
size = 42 * Quantum.Client.ResolutionScale,
antialias = true
})
surface.CreateFont( "q_header_vs", {
font = "Constantia Bold Italic",
size = 35 * Quantum.Client.ResolutionScale,
antialias = true
})
surface.CreateFont( "q_title", {
font = "Cambria Bold",
size = 60 * Quantum.Client.ResolutionScale,
antialias = true
})
surface.CreateFont( "q_subtitle", {
font = "Cambria Bold",
size = 38 * Quantum.Client.ResolutionScale,
antialias = true
})
surface.CreateFont( "q_name", {
font = "Cambria Bold",
size = 38 * Quantum.Client.ResolutionScale,
antialias = true
})
surface.CreateFont( "q_money", {
font = "Cambria Bold",
size = 42 * Quantum.Client.ResolutionScale,
antialias = true
})
surface.CreateFont( "q_tooltip_title", {
font = "Cambria Bold",
size = 24 * Quantum.Client.ResolutionScale,
antialias = true
})
surface.CreateFont( "q_tooltip_desc", {
font = "Cambria",
size = 20 * Quantum.Client.ResolutionScale,
antialias = true
})
surface.CreateFont( "q_tooltip_rarity", {
font = "Cambria",
size = 18 * Quantum.Client.ResolutionScale,
antialias = true
})
surface.CreateFont( "q_tooltip_equiptype", {
font = "Cambria",
size = 18 * Quantum.Client.ResolutionScale,
antialias = true
})
surface.CreateFont( "q_item_amount", {
font = "Cambria Bold",
size = 22 * Quantum.Client.ResolutionScale,
antialias = true
})
surface.CreateFont( "q_item_mark", {
font = "Cambria Bold",
size = 26 * Quantum.Client.ResolutionScale,
antialias = true
})
surface.CreateFont( "q_item_option_button", {
font = "Cambria",
size = 24 * Quantum.Client.ResolutionScale,
antialias = true
})
surface.CreateFont( "q_item_option_dropbutton", {
font = "Cambria",
size = 28 * Quantum.Client.ResolutionScale,
antialias = true
})
surface.CreateFont( "q_item_option_dropval", {
font = "Cambria",
size = 40 * Quantum.Client.ResolutionScale,
antialias = true
})
surface.CreateFont( "q_item_hud_title", {
font = "Cambria",
size = 28 * Quantum.Client.ResolutionScale,
antialias = true
})
surface.CreateFont( "q_item_hud_rarity", {
font = "Cambria",
size = 21 * Quantum.Client.ResolutionScale,
antialias = true
})
surface.CreateFont( "q_item_hud_soulbound", {
font = "Cambria",
size = 20 * Quantum.Client.ResolutionScale,
antialias = true
})
surface.CreateFont( "q_char_hud_name", {
font = "Cambria",
size = 40 * Quantum.Client.ResolutionScale,
antialias = true
})
surface.CreateFont( "q_craft_hud_text", {
font = "Cambria",
size = 25 * Quantum.Client.ResolutionScale,
antialias = true
})
surface.CreateFont( "q_dialogue_question", {
font = "Arial",
size = 38 * Quantum.Client.ResolutionScale,
antialias = true
})