okokDocs
  • About Us
  • Scripts
    • okokVehicleControl
      • Config file
    • okokMechanicJob
      • Config file
    • okokPoliceJob
      • Config file
      • qb-inventory support
    • okokBossMenu
      • Config file
    • okokMulticharacter
      • Config file
    • okokPhone
    • okokSpawnSelector
      • Config file
      • qb-multicharacter support
    • okokLoadingScreen
      • Config file
    • okokVehicleSales
      • Config file
    • okokShop
      • Config file
    • okokGasStation
      • Config file
    • okokTuning
      • Config file
    • okokGarage
      • Config file
      • RGB vehicle colors
      • Inventories metadata
      • Housing integrations
      • qb-phone support
    • okokVehicleShop
      • Config file
      • Common errors
    • okokBanking
      • Config file
      • Paycheck transactions
      • Registering transactions
    • okokMarketplace
      • Config file
      • Common errors
    • okokChat
      • Config file
      • Export
    • okokBilling
      • Config file
      • Snippets
    • okokCrafting
      • Config file
    • okokContract
      • Config file
    • okokTalkToNPC
      • Config file
    • okokReports
      • Config file
    • okokNotify
      • Config file
      • Snippets
    • okokTextUI
      • Config file
      • Snippets
    • okokRequests
    • okokDeleteVehicles
      • Config file
  • Others
    • Discord Webhook
Powered by GitBook
On this page
  1. Scripts
  2. okokTextUI

Config file

Config = {}

Config.Kinds = {
    lightblue = {
        backgroundColor = "rgba(240, 240, 240, 0.85)", --  Use any CSS color value (hexadecimal, RGB, HSL, etc)
        textColor = "#234799",
	highlightColor = "#234799",
        icon = "fa-solid fa-circle-info" -- Use any Font Awesome icon name (https://fontawesome.com/icons)
    },
    darkblue = {
        backgroundColor = "rgba(20, 20, 20, 0.85)",
        textColor = "#fff",
        highlightColor = "#2f83ff",
        icon = "fa-solid fa-circle-info"
    },
    lightgreen = {
        backgroundColor = "rgba(240, 240, 240, 0.85)",
        textColor = "#20ab4d",
        highlightColor = "#20ab4d",
        icon = "fa-solid fa-circle-info"
    },
    darkgreen = {
        backgroundColor = "rgba(20, 20, 20, 0.85)",
        textColor = "#fff",
        highlightColor = "#47cf73",
        icon = "fa-solid fa-circle-info"
    },
    lightred = {
        backgroundColor = "rgba(240, 240, 240, 0.85)",
        textColor = "#dc3545",
        highlightColor = "#dc3545",
        icon = "fa-solid fa-circle-info"
    },
    darkred = {
        backgroundColor = "rgba(20, 20, 20, 0.85)",
        textColor = "#fff",
        highlightColor = "#dc3545",
        icon = "fa-solid fa-circle-info"
    },
    lightgray = {
        backgroundColor = "rgba(240, 240, 240, 0.85)",
        textColor = "#646464",
        highlightColor = "#646464",
        icon = "fa-solid fa-circle-info"
    },
    darkgray = {
        backgroundColor = "rgba(20, 20, 20, 0.85)",
        textColor = "#fff",
        highlightColor = "#969696",
        icon = "fa-solid fa-circle-info"
    }
}
PreviousokokTextUINextSnippets

Last updated 1 year ago