Config File

const Config = {
    // ═══════════════════════════════════════════════════════════════════════
    // 🎨 THEME SETTINGS
    // ═══════════════════════════════════════════════════════════════════════
    theme: {
        primaryColor: "#ed0202"  // Main theme color (supports hex with alpha)
    },

    // ═══════════════════════════════════════════════════════════════════════
    // 🖼️ SERVER LOGO
    // ═══════════════════════════════════════════════════════════════════════
    serverLogo: {
        enabled: true,
        url: "https://dunb17ur4ymx4.cloudfront.net/webstore/logos/31f05105c2f95593bcb01ee087d16e230792138d.png",
        width: 15,                  // Logo width in viewport width (vw)
        animation: "none",          // Options: "pulse" | "glow" | "float" | "none"

        // Leave url empty ("") to use SVG placeholder with your server name
        // Example: url: ""
    },

    // ═══════════════════════════════════════════════════════════════════════
    // 🌄 BACKGROUND SETTINGS
    // ═══════════════════════════════════════════════════════════════════════
    background: {
        enabled: true,
        type: "solid",              // Options: "solid" | "image" | "video"
        overlayOpacity: 0.9,        // 0.0 = transparent, 1.0 = solid dark overlay
        changeInterval: 5000,       // Background change interval (ms) - for image/video
        fadeTransition: true,       // Smooth fade effect when changing backgrounds

        // Image backgrounds (multiple images)
        images: [
            "assets/img/game-image-1.jpg",
            "assets/img/game-image-2.jpg",
            "assets/img/game-image-3.jpg",
            "assets/img/game-image-4.jpg",
            "assets/img/game-image-5.jpg"
        ],

        // Video backgrounds (multiple videos)
        videos: [
            "assets/video/background.mp4"
        ]
    },

    // ═══════════════════════════════════════════════════════════════════════
    // 🎵 MUSIC PLAYER
    // ═══════════════════════════════════════════════════════════════════════
    musicPlayer: {
        enabled: true,
        autoplay: true,             // Auto-start music on load
        shuffle: false,             // Randomize playlist order
        defaultVolume: 30,          // Initial volume (0-100)

        songs: [
            {
                name: "BUFÓN! - TikTok Version",
                artist: "Scythermane",
                file: "assets/music/bufon.mp3",
                image: "https://i1.sndcdn.com/artworks-DHV8Lr1HAyEZE8TG-2kPGAQ-t500x500.png"
            },
            {
                name: "Not Like Us",
                artist: "Kendrick Lamar",
                file: "assets/music/not-like-us.mp3",
                image: "https://i1.sndcdn.com/artworks-Xp5PMsXvDudu-0-t500x500.jpg"
            },
            {
                name: "Need It",
                artist: "Migos",
                file: "assets/music/need-it.mp3",
                image: "https://i1.sndcdn.com/artworks-knruFn0FciT4-0-t1080x1080.jpg"
            },
            {
                name: "Only Problem",
                artist: "R3 DA Chilliman, 03 Greedo",
                file: "assets/music/only-problem.mp3",
                image: "https://i1.sndcdn.com/artworks-sSNoUZWQ0IVTkEq8-SikkRA-t500x500.jpg"
            },
            {
                name: "Never Tell Freestyle",
                artist: "Remble",
                file: "assets/music/never-tell-freestyle.mp3",
                image: "https://i1.sndcdn.com/artworks-nuZjIMjR2okqYfiy-Es27CQ-t500x500.jpg"
            }
        ]
    },

    // ═══════════════════════════════════════════════════════════════════════
    // 💬 RANDOM MESSAGES
    // ═══════════════════════════════════════════════════════════════════════
    randomMessages: {
        enabled: true,
        changeInterval: 5000,       // Message change interval (ms)

        messages: [
            "Welcome to Savoy Roleplay! Enjoy your stay in our community.",
            "Remember to read the server rules before playing.",
            "Join our Discord server for the latest updates and events.",
            "Need help? Our staff team is always ready to assist you.",
            "Don't forget to check out our social media channels.",
            "Roleplay seriously and respect other players for the best experience."
        ]
    },

    // ═══════════════════════════════════════════════════════════════════════
    // 🌐 SOCIAL MEDIA LINKS
    // ═══════════════════════════════════════════════════════════════════════
    socialMedia: [
        {
            name: "Discord",
            icon: "./assets/img/f143a084463d2874a836574c476c21d0e7aa3e50.svg",
            url: "https://discord.gg/yourdiscord"
        },
        {
            name: "Instagram",
            icon: "./assets/img/48f6c16c6087627e8622a19fecb353c5ad01a303.svg",
            url: "https://instagram.com/yourinstagram"
        },
        {
            name: "Youtube",
            icon: "./assets/img/66f25923aac46b2369ef007c29b4ed7f0681d0b3.svg",
            url: "https://youtube.com/@yourchannel"
        },
        {
            name: "TikTok",
            icon: "./assets/img/96c626a51848a26e7a79bd21d6bd8a1028535739.svg",
            url: "https://tiktok.com/@youraccount"
        }
    ],

    // ═══════════════════════════════════════════════════════════════════════
    // 👥 STAFF LIST
    // ═══════════════════════════════════════════════════════════════════════
    staffList: [
        {
            name: "Savoy",
            position: "Owner",
            image: "./assets/img/6589c81ab90a91b20a1d85a7e387ac42bcadcb4b.png",
            color: "#E7434F"
        },
        {
            name: "Savoy",
            position: "Owner",
            image: "./assets/img/6589c81ab90a91b20a1d85a7e387ac42bcadcb4b.png",
            color: "#43e78dff"
        },
        {
            name: "Savoy",
            position: "Owner",
            image: "./assets/img/6589c81ab90a91b20a1d85a7e387ac42bcadcb4b.png",
            color: "#6f43e7ff"
        },
        {
            name: "Savoy",
            position: "Owner",
            image: "./assets/img/6589c81ab90a91b20a1d85a7e387ac42bcadcb4b.png",
            color: "#e7c643ff"
        }
    ],

    // ═══════════════════════════════════════════════════════════════════════
    // 📜 SERVER RULES
    // ═══════════════════════════════════════════════════════════════════════
    serverRules: {
        enabled: true,

        rules: [
            {
                title: "Title of Rule",
                description: "Lorem ipsum dolor sit amet consectetur. Elit enim nam diam eu ut integer tincidunt"
            },
            {
                title: "Title of Rule",
                description: "Lorem ipsum dolor sit amet consectetur. Elit enim nam diam eu ut integer tincidunt"
            },
            {
                title: "Title of Rule",
                description: "Lorem ipsum dolor sit amet consectetur. Elit enim nam diam eu ut integer tincidunt"
            },
            {
                title: "Title of Rule",
                description: "Lorem ipsum dolor sit amet consectetur. Elit enim nam diam eu ut integer tincidunt"
            },
            {
                title: "Title of Rule",
                description: "Lorem ipsum dolor sit amet consectetur. Elit enim nam diam eu ut integer tincidunt"
            }
        ]
    },

    // ═══════════════════════════════════════════════════════════════════════
    // 🖼️ SERVER GALLERY
    // ═══════════════════════════════════════════════════════════════════════
    gallery: {
        enabled: true,

        images: [
            { url: "assets/img/game-image-1.jpg" },
            { url: "assets/img/game-image-2.jpg" },
            { url: "assets/img/game-image-3.jpg" },
            { url: "assets/img/game-image-4.jpg" },
            { url: "assets/img/game-image-5.jpg" },
            { url: "assets/img/game-image-1.jpg" },
            { url: "assets/img/game-image-2.jpg" },
            { url: "assets/img/game-image-3.jpg" },
            { url: "assets/img/game-image-4.jpg" }
        ]
    },

    // ═══════════════════════════════════════════════════════════════════════
    // 📰 CHANGELOG
    // ═══════════════════════════════════════════════════════════════════════
    changelog: {
        enabled: true,

        updates: [
            {
                date: "03.08.2025",
                title: "New Vehicle Control",
                description: "New vehicle control system added. Automatic play and cover image support."
            },
            {
                date: "01.08.2025",
                title: "Performance Improvements",
                description: "Loading speed optimized and some bugs fixed."
            },
            {
                date: "28.07.2025",
                title: "Modern UI Design",
                description: "Completely redesigned modern UI and advanced animations."
            },
            {
                date: "25.07.2025",
                title: "Staff System Updated",
                description: "Dynamic color system and modern card design added."
            }
        ]
    }

};

Last updated