Untitled

 avatar
unknown
plain_text
18 days ago
3.0 kB
5
Indexable
{
    "workbench.colorTheme": "Default Dark+", // Zachovávanie základného layoutu
    "editor.tokenColorCustomizations": {
        "textMateRules": [
            {
                "scope": "keyword.control",
                "settings": {
                    "foreground": "#FFD700",
                    "fontStyle": "bold"
                } // Zlatá pre for, while, if...
            },
            {
                "scope": "storage.type",
                "settings": {
                    "foreground": "#569CD6"
                } // Modrá pre typy a návratové hodnoty
            },
            {
                "scope": "variable",
                "settings": {
                    "foreground": "#9CDCFE"
                } // Svetlomodrá pre premenné
            },
            {
                "scope": "entity.name.function",
                "settings": {
                    "foreground": "#DCDCAA",
                    "fontStyle": "italic"
                } // Svetložltá pre názvy funkcií
            }
        ]
    },
    "workbench.colorCustomizations": {
        "editor.background": "#002B36", // Tmavozelené pozadie editora
        "editor.foreground": "#93A1A1", // Farba textu v editore
        "editor.selectionBackground": "#073642",
        "editor.lineHighlightBackground": "#003D4C",
        "editorCursor.foreground": "#FFD700", // Zlatá farba kurzora
        "editorWhitespace.foreground": "#D0D0D0",
        // OPRAVA: Širšie a čisto biele zvislé čiary v kóde
        "editorIndentGuide.background": "#FFFFFF",
        "editorIndentGuide.activeBackground": "#FFFFFF",
        "editorIndentGuide.activeWidth": 3, // Ešte širšie
        // Bočný panel, menu a stavový riadok
        "activityBar.background": "#003D4C",
        "sideBar.background": "#002B36",
        "panel.background": "#002B36",
        "statusBar.background": "#003D4C",
        "titleBar.activeBackground": "#00252B",
        "titleBar.inactiveBackground": "#001E26",
        "titleBar.activeForeground": "#D4D4D4",
        "titleBar.inactiveForeground": "#7F8C8D",
        // Záložky v editore
        "tab.activeBackground": "#002B36",
        "tab.inactiveBackground": "#003542",
        "tab.border": "#00424D",
        "tab.activeForeground": "#FFFFFF",
        "tab.inactiveForeground": "#A3B2B3"
    },
    // OPRAVA: Nastavenie správnych ikoniek (správna žltá pre foldre a súbory)
    "workbench.iconTheme": "material-icon-theme",
    "material-icon-theme.folders.color": "#E6C300", // Upravená žltá pre foldre
    "material-icon-theme.files.color": "#FFD700",
    "editor.guides.indentation": true,
    "editor.guides.highlightActiveIndentation": true,
    "editor.guides.activeBackground": "#FFFFFF", // Čistá biela na aktívnu čiaru
    "editor.guides.normalBackground": "#D0D0D0", // Svetlá na ostatné čiary
    // Font a veľkosť písma
    "editor.fontFamily": "'Fira Code', Consolas, 'Courier New', monospace",
    "editor.fontSize": 14,
    "editor.fontLigatures": true
}
Editor is loading...
Leave a Comment