summaryrefslogtreecommitdiff
path: root/source/style/font.d
diff options
context:
space:
mode:
Diffstat (limited to 'source/style/font.d')
-rw-r--r--source/style/font.d12
1 files changed, 12 insertions, 0 deletions
diff --git a/source/style/font.d b/source/style/font.d
new file mode 100644
index 0000000..ae605b9
--- /dev/null
+++ b/source/style/font.d
@@ -0,0 +1,12 @@
+module style.font;
+
+enum Font {
+ bold = 1,
+ dim,
+ italic,
+ underline,
+ blinking,
+ hidden,
+ strikethrough,
+ reset = 0
+}