euma 2.0.2

Euma, a color and design theme
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[test]
fn test_theme() {
	use euma::theme;

	let theme = Box::new(theme::get_theme());

	assert_ne!(
		theme.read("color", "text", "header", "normal", "default"),
		None,
		"Default values must be populated"
	);
}