diff --git a/index.html b/index.html
index da46c01..3d3f0ce 100644
--- a/index.html
+++ b/index.html
@@ -223,6 +223,10 @@
+
+
+
+
diff --git a/scss/icons/icons.scss b/scss/icons/icons.scss
index 3438dc7..25c095a 100644
--- a/scss/icons/icons.scss
+++ b/scss/icons/icons.scss
@@ -11,6 +11,7 @@
@import "google.scss";
@import "medium.scss";
@import "twitch.scss";
+@import "reddit.scss";
// others
@import "close.scss";
@@ -93,6 +94,10 @@
&.twitch::before {
@include pixelize($icon-twitch, $icon-twitch-colors, $px);
}
+
+ &.reddit::before {
+ @include pixelize($icon-reddit, $icon-reddit-colors, $px);
+ }
}
// default
diff --git a/scss/icons/reddit.scss b/scss/icons/reddit.scss
new file mode 100644
index 0000000..d3f415c
--- /dev/null
+++ b/scss/icons/reddit.scss
@@ -0,0 +1,20 @@
+$icon-reddit-colors: (#fff, #f40);
+// prettier-ignore
+$icon-reddit: (
+ ( 0,0,2,2,2,2,2,2,2,2,2,2,2,2,0,0 ),
+ ( 0,2,2,2,2,2,2,2,1,1,1,2,1,2,2,0 ),
+ ( 2,2,2,2,2,2,2,1,2,2,2,1,1,1,2,2 ),
+ ( 2,2,2,2,2,2,2,1,2,2,2,2,1,2,2,2 ),
+ ( 2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2 ),
+ ( 2,1,1,2,1,1,1,1,1,1,1,1,2,1,1,2 ),
+ ( 2,1,2,1,1,1,1,1,1,1,1,1,1,2,1,2 ),
+ ( 2,2,1,1,1,2,2,1,1,2,2,1,1,1,2,2 ),
+ ( 2,1,1,1,1,2,2,1,1,2,2,1,1,1,1,2 ),
+ ( 2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2 ),
+ ( 2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2 ),
+ ( 2,2,1,1,1,2,1,1,1,1,2,1,1,1,2,2 ),
+ ( 2,2,2,1,1,1,2,2,2,2,1,1,1,2,2,2 ),
+ ( 2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2 ),
+ ( 0,2,2,2,2,2,1,1,1,1,2,2,2,2,2,0 ),
+ ( 0,0,2,2,2,2,2,2,2,2,2,2,2,2,0,0 )
+);