diff --git a/CLC-qthing/SiliconTorch/FxCyanRGB8.cpp b/CLC-qthing/SiliconTorch/FxCyanRGB8.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..640001de726ce737c3b2ec656432b814d65c61ea
--- /dev/null
+++ b/CLC-qthing/SiliconTorch/FxCyanRGB8.cpp
@@ -0,0 +1,30 @@
+#include "FxCyanRGB8.hpp"
+
+// C++ system level
+#include <string>
+#include <cinttypes>
+#include <functional>
+
+// ESP32 specific
+// #include "freertos/FreeRTOS.h"
+// #include "freertos/queue.h"
+
+// project specific
+// #include "LambdaTask.hpp"
+
+// qthing stuff
+// #include ""
+
+
+
+namespace SiliconTorch {
+
+  namespace FxCyanRGB8 {
+
+
+    FxCyanRGB8::FxCyanRGB8() {
+    }
+
+
+  }
+}
diff --git a/CLC-qthing/SiliconTorch/FxCyanRGB8.hpp b/CLC-qthing/SiliconTorch/FxCyanRGB8.hpp
new file mode 100644
index 0000000000000000000000000000000000000000..691604f48cd862d9bae82a4d66998a36f818297c
--- /dev/null
+++ b/CLC-qthing/SiliconTorch/FxCyanRGB8.hpp
@@ -0,0 +1,35 @@
+#pragma once
+
+// C++ system level
+#include <string>
+#include <cinttypes>
+#include <functional>
+
+// ESP32 specific
+// #include "freertos/FreeRTOS.h"
+// #include "freertos/queue.h"
+
+// project specific
+// #include "LambdaTask.hpp"
+
+// qthing stuff
+// #include ""
+
+
+
+namespace SiliconTorch {
+
+  namespace FxCyanRGB8 {
+
+
+    class FxCyanRGB8 {
+      public:
+        FxCyanRGB8();
+
+      private:
+
+
+
+    };
+  }
+}