Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 962 Bytes

README.md

File metadata and controls

39 lines (26 loc) · 962 Bytes

Minimal Theme for Feathers UI

A theme for Feathers UI, based on the appearance of MinimalComps by Keith Peters.

Minimum Requirements

  • Feathers UI 1.0

Installation

Run the following command in a terminal to install feathersui-minimal-theme from GitHub.

haxelib git feathersui-minimal-theme https://github.com/feathersui/feathersui-minimal-theme.git

Project Configuration

After installing the library above, add it to your OpenFL project.xml file:

<haxelib name="feathersui-minimal-theme" />

Usage

Before calling super() in the constructor of your main class, pass a new MinimalTheme instance to Theme.setTheme().

import com.feathersui.themes.minimal.MinimalTheme;
import feathers.controls.Application;

class Main extends Application {
	public function new() {
		Theme.setTheme(new MinimalTheme(), this);
		super();
	}
}