import tinty.Scheme // load and apply a color scheme fun apply(name: String) = runCatching { val theme = Scheme.load(name) .withBase(16) .build() theme.apply() println("applied: ${theme.name}") }