From 8b38cf5d75f6fe1e270dcb26b55cd7cb0fbb3b65 Mon Sep 17 00:00:00 2001 From: yude Date: Tue, 23 Jan 2024 07:55:30 +0900 Subject: [PATCH] Add rich logo --- src/components/Logo.tsx | 195 ++++++++++++++++++++++++++++++++++++++++ src/index.css | 26 ++++++ 2 files changed, 221 insertions(+) create mode 100644 src/components/Logo.tsx diff --git a/src/components/Logo.tsx b/src/components/Logo.tsx new file mode 100644 index 0000000..b823984 --- /dev/null +++ b/src/components/Logo.tsx @@ -0,0 +1,195 @@ +export default function Logo() { + return ( + + + + + + + + + + ); + } + \ No newline at end of file diff --git a/src/index.css b/src/index.css index dc36a44..433e590 100644 --- a/src/index.css +++ b/src/index.css @@ -5,3 +5,29 @@ body { background-color: rgb(23 23 23); } + +@keyframes color-fill-anime { + 0% { + fill: #F8C3CD; + } + + 28% { + fill: #F4A7B9; + } + + 56% { + fill: #F596AA; + } + + 84% { + fill: #E16B8C; + } + + 100% { + fill: #DB4D6D; + } +} + +.color-fill { + animation: color-fill-anime 4s linear infinite alternate forwards; +}