Color Theme “sha” for Iris GUI Library
It turns out i use Iris GUI Library quite often, so this time i’ve decided to get into themes for myself primarily.
I don’t really like the separation of colors to options, but i had to deal with it i guess.
In the end it’s just trial and error to get what’s fitting for me and what’s not.
Usage
“sha” theme
Showcase
local Iris = require(path.to.Iris).Init()
Iris.UpdateGlobalConfig(Iris.TemplateConfig.sizeClear) -- on preference
Iris.UpdateGlobalConfig(require(path.to.module).Themes.colorSha)
Custom theme
I’ve simplified the job to generate a theme from 2 simple colors: background and accent. The colors i used in “sha” are my… I’d say brand ones. Any are fitting anyway, if you like them.
Showcase
local Iris = require(script.Iris).Init()
Iris.UpdateGlobalConfig(Iris.TemplateConfig.sizeClear) -- on preference
Iris.UpdateGlobalConfig(require(script.MainModule).GenerateNew(
Color3.new(.5,.5,.5),
Color3.new(0,0,0)
))
Links
Source
The topic is just an improved version of this post, i just feel like it deserved.