Darko: a Clean, Dark Theme For Your Script Editor!


Inspired by Spacey, Darko is a simple yet elegant scripting theme that’s easy to read & easy on your eyes :eyes:

Hex Codes
  • #63c89e
  • #ebe7ff
  • #beaaff
  • #fffbc6
  • #ffd09b
  • #fe4450

Installation

The installation is simple, just run this piece of code in your console and you are all good!

local json=[[{"Background Color":[31,27,53],"Selection Color":[99,200,158],"Selection Background Color":[51,45,81],"Error Color":[254,68,80],"Warning Color":[255,204,0],"Find Selection Background Color":[92,82,139],"Matching Word Background Color":[51,45,81],"Whitespace Color":[144,141,255],"Current Line Highlight Color":[36,32,60],"Ruler Color":[100,54,112],"Bracket Color":[255,204,0],"Text Color":[235,231,255],"Operator Color":[190,170,255],"Number Color":[255,208,155],"String Color":[144,255,188],"Comment Color":[100,90,160],"Bool Color":[255,208,155],"\"nil\" Color":[255,208,155],"Function Name Color":[255,251,198],"\"function\" Color":[190,170,255],"\"local\" Color":[190,170,255],"\"self\" Color":[255,147,244],"Luau Keyword Color":[235,231,255],"Keyword Color":[190,170,255],"Built-in Function Color":[255,251,198],"\"TODO\" Color":[235,231,255],"Method Color":[255,251,198],"Property Color":[235,231,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!")

An image of what it looks like on my crappy laptop:

Once again, huge thanks to Spacey for the idea and for the Installation Template, go check them about, and follow me for more things like this!

4 Likes

Fellow crappy laptop enthusiast eh :rofl:

Very nice theme though, slowly but surely making roblox studio’s ide up to par with vsc!

1 Like