JGS Docs
  • 👋Welcome!
  • 📚Resources Docs
    • 💭JGS Dynamic Chat
      • ⚠️Dependencies
      • 🔧Installation
      • 🗃️Exports
      • ⚙️Configuration
        • Configs
        • Discord Logs
        • Templates
        • Suggestions
        • Clipboard
        • Config JS
    • 💬JGS Samp Chat
      • ⚠️Dependencies
      • 🔧Installation
      • ⚙️Configuration
    • 🍔JGS Modern HUD
      • ⚠️Dependencies
      • 🔧Installation
      • 🗃️Exports & Commands
      • ⚙️Configuration
Powered by GitBook
On this page

Was this helpful?

  1. Resources Docs
  2. JGS Dynamic Chat
  3. Configuration

Clipboard

Preview of the configurable file of the package.

shared/clipboard.lua
if IsDuplicityVersion() then 
    DefaultTemplate = ''
    return 
end

DefaultTemplate = [[
    /* Style exported from ]] .. GetPlayerName(PlayerId()) .. [[ */

    @import url("https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600;700;800;900;1000&family=Rubik:wght@300;400;500;600;700;800;900&display=swap");
    @import url("https://fonts.googleapis.com/css2?family=Onest:wght@100;200;300;400;500;600;700;800;900&display=swap");
    @import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");

    :root {
        --shadows: inset 0px 0px 10px 0px rgba(0,0,0,0.45), 0 0 5px #a7333301;

        --color-default: #0e9627;
        --color-me: #a73333;
        --color-do: #1b579d;
        --color-ooc: #777777;
        --color-alert: #3d6ed1;
        --color-random: rgba(255, 255, 255, 0.5);
        --color-info: rgba(255, 255, 255, 0.35);
        --color-error: #8d0c0c;
        --color-msg: #187201;
        --color-request: #a8450b;
        --color-tweet: #1da1f2;
        --color-staff: #9c0490;
        --color-police: rgba(38, 125, 201, 0.75);
        --color-sheriff: rgba(20, 142, 8, 0.75);
        --color-ambulance: rgba(255, 51, 51, 0.75);
        --color-jgs: #0088cc;
    }

    ... (the code)
]]
PreviousSuggestionsNextConfig JS

Last updated 9 days ago

Was this helpful?

📚
💭
⚙️