Vehement // Bubbly Roblox Dark Theme

Every notice your Roblox script editor is Boring or just bland? Does it need color? Well here’s a bubbly Dark theme for your Script editor!


Vehement, My new theme. Its pretty bubbly but doesn’t induce (too much) strain in the eyes!
With its saturated bubbly theme it can increase the happiness of your mood! (Not Guaranteed)

Visual Comparison

Vehement:


Default:

As you can see, There’s a Large difference between the two. Vehement is saturated and Bubbly but doesn’t strain the eyes (much). While Default, well… Default is just default.

How To Install
To install just paste this code into the console:



local json = [[{"Background Color":[48,44,53],"Selection Color":[171,178,191],"Selection Background Color":[70,74,143],"Error Color":[254,0,250],"Warning Color":[0,43,200],"Find Selection Background Color":[126,139,81],"Matching Word Background Color":[122, 112, 135],"Whitespace Color":[144, 141, 255],"Current Line Highlight Color":[48, 44, 53],"Ruler Color":[69, 119, 237],"Bracket Color":[69, 119, 237],"Text Color":[255, 225, 133],"Operator Color":[255, 97, 126],"Number Color":[237, 194, 165],"String Color":[255, 97, 100],"Comment Color":[92, 82, 139],"Bool Color":[69, 119, 237],"\"nil\" Color":[203, 37, 40],"Function Name Color":[255, 251, 198],"\"function\" Color":[69, 119, 237],"\"local\" Color":[69, 119, 237],"\"self\" Color":[69, 119, 237],"Luau Keyword Color":[255, 230, 129],"Keyword Color":[78, 255, 228],"Built-in Function Color":[255, 251, 198],"\"TODO\" Color":[69, 119, 237],"Method Color":[255, 251, 198],"Property Color":[195, 181, 255]}]]
local theme = game.HttpService:JSONDecode(json)
local studio = settings().Studio
for name, color in pairs(theme) do
    color = Color3.fromRGB(color[1], color[2], color[3])
    local success =
        pcall(
        function()
            studio[name] = color
        end
    )
    if not success then
        warn(("%s is not a valid theme color"):format(name))
    end
end
print("Successfully changed your Script Editor theme!") 

BTW THIS FONT LOOKS THE BEST IMO WITH CASCADIA CODE BOLD FONT


Thanks for reading. and Using!
Please tell me if you’d use this and why or why not.

  • Would Use
  • Wouldn’t Use

0 voters

6 Likes