<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Mohamed Youssouf</title>
    <description>The latest articles on Forem by Mohamed Youssouf (@medmya).</description>
    <link>https://forem.com/medmya</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F353647%2F0ab5092c-f5f3-43be-8553-e6838eebb7ed.png</url>
      <title>Forem: Mohamed Youssouf</title>
      <link>https://forem.com/medmya</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/medmya"/>
    <language>en</language>
    <item>
      <title>How To Create Horizontal Infinite Scrolling Text (Without Using JavaScript)</title>
      <dc:creator>Mohamed Youssouf</dc:creator>
      <pubDate>Sun, 02 Apr 2023 13:53:50 +0000</pubDate>
      <link>https://forem.com/medmya/how-to-create-horizontal-infinite-scrolling-text-without-using-javascript-3gf5</link>
      <guid>https://forem.com/medmya/how-to-create-horizontal-infinite-scrolling-text-without-using-javascript-3gf5</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;Originally published at &lt;a href="https://www.myoussouf.com/"&gt;www.myoussouf.com&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Back in the day, if we wanted to add a cool scrolling text animation to a website. The best and the easiest option would be to use the marquee tag, but nowadays it is deprecated and not advised to use it.&lt;/p&gt;

&lt;p&gt;but with the modern properties that CSS has, we could do the exact thing even without JavaScript help!&lt;/p&gt;

&lt;p&gt;In this tutorial, we will learn how to make scrolling text animation using the CSS &lt;code&gt;animation&lt;/code&gt; property and &lt;code&gt;@keyframe&lt;/code&gt; rule. So little knowledge of them is required.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;The markup&lt;/strong&gt;
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"scrolling_text"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"text"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;span&amp;gt;&lt;/span&gt;I'm moving wiiiiii!&lt;span class="nt"&gt;&amp;lt;/span&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;span&amp;gt;&lt;/span&gt;I'm moving wiiiiii!&lt;span class="nt"&gt;&amp;lt;/span&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;span&amp;gt;&lt;/span&gt;I'm moving wiiiiii!&lt;span class="nt"&gt;&amp;lt;/span&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;span&amp;gt;&lt;/span&gt;I'm moving wiiiiii!&lt;span class="nt"&gt;&amp;lt;/span&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;span&amp;gt;&lt;/span&gt;I'm moving wiiiiii!&lt;span class="nt"&gt;&amp;lt;/span&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;div&lt;/span&gt; &lt;span class="na"&gt;class=&lt;/span&gt;&lt;span class="s"&gt;"text"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;span&amp;gt;&lt;/span&gt;I'm moving wiiiiii!&lt;span class="nt"&gt;&amp;lt;/span&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;span&amp;gt;&lt;/span&gt;I'm moving wiiiiii!&lt;span class="nt"&gt;&amp;lt;/span&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;span&amp;gt;&lt;/span&gt;I'm moving wiiiiii!&lt;span class="nt"&gt;&amp;lt;/span&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;span&amp;gt;&lt;/span&gt;I'm moving wiiiiii!&lt;span class="nt"&gt;&amp;lt;/span&amp;gt;&lt;/span&gt;
        &lt;span class="nt"&gt;&amp;lt;span&amp;gt;&lt;/span&gt;I'm moving wiiiiii!&lt;span class="nt"&gt;&amp;lt;/span&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Let’s break it down.&lt;/p&gt;

&lt;p&gt;We created a parent element with the class name &lt;code&gt;.scrolling_text&lt;/code&gt; that will be our main container.&lt;/p&gt;

&lt;p&gt;Within it, we added two dives with class &lt;code&gt;.text&lt;/code&gt;. Inside the &lt;code&gt;.text&lt;/code&gt; element, we wrapped each word with the span tag to separate them.&lt;/p&gt;

&lt;p&gt;You might ask yourself, why did we repeat &lt;code&gt;.text&lt;/code&gt; twice? &lt;/p&gt;

&lt;p&gt;We did this to make animation seamless because. If we used one &lt;code&gt;.text&lt;/code&gt; element, there will be a blank space when its animation is about to complete as shown bellow.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--m7VDizPY--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/5lo6zl4aactfgls6jt11.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--m7VDizPY--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_66%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/5lo6zl4aactfgls6jt11.gif" alt="A animated image showing a blank space after the animation is completed" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;The styling&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;we will start by styling the container element first.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;&lt;span class="nc"&gt;.scrolling_text&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="nl"&gt;width&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;100%&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="nl"&gt;overflow&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nb"&gt;hidden&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="nl"&gt;display&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;flex&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="nl"&gt;white-space&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nb"&gt;nowrap&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;In the above styles, We set the width of the &lt;code&gt;.scrolling_text&lt;/code&gt; to 100% to make it take the full width of the page.&lt;/p&gt;

&lt;p&gt;We used &lt;code&gt;white-space&lt;/code&gt; property and set it to &lt;code&gt;nowrap&lt;/code&gt; to prevent the text line from breaking.&lt;/p&gt;

&lt;p&gt;also, it is important to set &lt;code&gt;overflow&lt;/code&gt; to &lt;code&gt;hidden&lt;/code&gt; to prevent the horizontal scrolling bar from appearing.&lt;/p&gt;

&lt;p&gt;Next, let’s add styles to the &lt;code&gt;.text&lt;/code&gt; element.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;&lt;span class="nc"&gt;.text&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="nl"&gt;font-size&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;80px&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="nl"&gt;font-weight&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;700&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="nl"&gt;text-transform&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nb"&gt;uppercase&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="nl"&gt;color&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;#3A1240&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;As for the text element, nothing special is happening. We just made the font big and capitalized it to make it stand out.&lt;/p&gt;

&lt;p&gt;Lastly, let’s add a margin on the left and right sides of the &lt;code&gt;span&lt;/code&gt; element to separate the words.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;&lt;span class="nc"&gt;.text&lt;/span&gt; &lt;span class="nt"&gt;span&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="nl"&gt;margin&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;0&lt;/span&gt; &lt;span class="m"&gt;40px&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;And that is all basic styling. Now we are going to add the animation. The fun part!&lt;/p&gt;

&lt;p&gt;To use CSS animation, we have to define the animation sequences with the &lt;code&gt;@keyframes&lt;/code&gt; rule first. And then call it on the element we want to implement the animation on using the &lt;code&gt;animation&lt;/code&gt; property.&lt;/p&gt;

&lt;p&gt;So, let’s begin by defining our animation sequence using the &lt;code&gt;@keyframes&lt;/code&gt;.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;&lt;span class="k"&gt;@keyframes&lt;/span&gt; &lt;span class="n"&gt;animate_text&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="nt"&gt;from&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
      &lt;span class="nl"&gt;transform&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;translate3d&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="m"&gt;0&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="m"&gt;0&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="m"&gt;0&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
    &lt;span class="p"&gt;}&lt;/span&gt;
    &lt;span class="nt"&gt;to&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
      &lt;span class="nl"&gt;transform&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;translate3d&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="m"&gt;-100%&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="m"&gt;0&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="m"&gt;0&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
    &lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;We set the animation sequence to move the element from its initial position to the left side by using the &lt;code&gt;transform&lt;/code&gt; property.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note: Each @kayframes requires a name, so it can be used. In our case, we named our animation “animate_text”.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Now let’s apply the animation sequence we defined to the element we want to animate. Which is the &lt;code&gt;.text&lt;/code&gt; element by adding the &lt;code&gt;animation&lt;/code&gt; property to it.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight css"&gt;&lt;code&gt;&lt;span class="nc"&gt;.text&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="nl"&gt;font-size&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;80px&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="nl"&gt;font-weight&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;700&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="nl"&gt;text-transform&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nb"&gt;uppercase&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="nl"&gt;color&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="m"&gt;#3A1240&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="nl"&gt;animation&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="n"&gt;animate_text&lt;/span&gt; &lt;span class="m"&gt;30s&lt;/span&gt; &lt;span class="n"&gt;linear&lt;/span&gt; &lt;span class="n"&gt;infinite&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="c"&gt;/* The animation property */&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;We called the animation sequence we defined with the &lt;code&gt;@keyframes&lt;/code&gt; by using the name we gave it which is &lt;code&gt;animate_text&lt;/code&gt;. And we set the animation duration to 30 seconds and looped it infinitely by adding the &lt;code&gt;infinite&lt;/code&gt; keyword.&lt;/p&gt;

&lt;p&gt;And voila! Our horizontal scrolling text.&lt;/p&gt;

&lt;h3&gt;
  
  
  Conclusion
&lt;/h3&gt;

&lt;p&gt;We learned how to make a scrolling text animation, and how to implement animation using the &lt;code&gt;@keyframes&lt;/code&gt; rule and &lt;code&gt;animation&lt;/code&gt; property in CSS. &lt;/p&gt;

&lt;p&gt;I hope this article was helpful to you, thanks for reading!&lt;/p&gt;

</description>
      <category>css</category>
      <category>beginners</category>
      <category>webdev</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Free Tailwind CSS personal portfolio template</title>
      <dc:creator>Mohamed Youssouf</dc:creator>
      <pubDate>Sun, 19 Mar 2023 15:26:42 +0000</pubDate>
      <link>https://forem.com/medmya/free-tailwind-css-personal-portfolio-template-2al1</link>
      <guid>https://forem.com/medmya/free-tailwind-css-personal-portfolio-template-2al1</guid>
      <description>&lt;p&gt;Hello everyone!&lt;/p&gt;

&lt;p&gt;Building a professional looking portfolio is a hard task and it takes a lot of time. that's why I built an open source portfolio template.&lt;/p&gt;

&lt;p&gt;Carbon is free TailwindCSS portfolio template that's perfect for developers and designers. It comes with a high-quality design and all the essential components &amp;amp; pages you need to launch a complete portfolio website.&lt;/p&gt;

&lt;p&gt;The template includes 5 pages, and they are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Home&lt;/li&gt;
&lt;li&gt;Work&lt;/li&gt;
&lt;li&gt;Case study&lt;/li&gt;
&lt;li&gt;About&lt;/li&gt;
&lt;li&gt;Contact&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Github link: &lt;a href="https://github.com/MohamedYoussouf/carbon"&gt;https://github.com/MohamedYoussouf/carbon&lt;/a&gt;
&lt;/h3&gt;

&lt;h3&gt;
  
  
  Live preview: &lt;a href="https://carbon-theme.netlify.app/"&gt;https://carbon-theme.netlify.app/&lt;/a&gt;
&lt;/h3&gt;

&lt;p&gt;Feel free to share your thoughts in the comments.&lt;/p&gt;

&lt;p&gt;Follow me on &lt;a href="https://twitter.com/MedMYA"&gt;Twitter&lt;/a&gt;, I share useful tweets about web development and design there.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>career</category>
      <category>opensource</category>
      <category>tailwindcss</category>
    </item>
    <item>
      <title>Top 5 free Figma UI kits to use in your projects</title>
      <dc:creator>Mohamed Youssouf</dc:creator>
      <pubDate>Tue, 21 Sep 2021 13:01:02 +0000</pubDate>
      <link>https://forem.com/medmya/top-5-free-figma-ui-kits-to-use-in-your-projects-1li9</link>
      <guid>https://forem.com/medmya/top-5-free-figma-ui-kits-to-use-in-your-projects-1li9</guid>
      <description>&lt;p&gt;Figma has become one of the most essential tools for designers, it has a huge community of users that share lots of free &lt;a href="https://www.figmabox.com" rel="noopener noreferrer"&gt;Figma resources&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;In this post, I will share with some of my favorite Figma UI kits which you can use it in your projects or just for practicing purposes &lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;a href="https://www.figma.com/community/file/894552273937682724" rel="noopener noreferrer"&gt;Landify&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fw2lg9czvludbs7mutmb8.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fw2lg9czvludbs7mutmb8.png" alt="Landify UI Kit"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Landify is one of the best Figma resources out there. It comes with more than 90 pre-made blocks divided into 13 different categories based on use cases. &lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;a href="https://www.figma.com/community/file/778763161265841481" rel="noopener noreferrer"&gt;Material Baseline Design Kit&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fojdvfgmfuj95gtdli98z.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fojdvfgmfuj95gtdli98z.png" alt="Material Baseline Design Kit"&gt;&lt;/a&gt;&lt;br&gt;
This is the official material design kit for Figma, which contains premade components and a set of styles that are easy to use and customize.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;a href="https://www.figma.com/community/file/1017379818245262817" rel="noopener noreferrer"&gt;Webpixels Design System&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fe07d00d6az215948iuwz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fe07d00d6az215948iuwz.png" alt="Webpixels Design System"&gt;&lt;/a&gt;&lt;br&gt;
Webpixels Design System is a collection of beautiful styles, components, and templates for Figma designed to allow you to build modern user interfaces at an accelerated pace&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;a href="https://www.figma.com/community/file/827876058453173134" rel="noopener noreferrer"&gt;Marvie IOS UI Kit Dark theme&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fxmzpudqmk7r1w43l2u32.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fxmzpudqmk7r1w43l2u32.png" alt="Marvie IOS UI Kit Dark theme"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This mobile UI kit has bright, friendly colors and can be used for any purpose. Easy-to-use and fully featured. It contains well-named and organized components and symbols. &lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;a href="https://www.figma.com/community/file/984106517828363349" rel="noopener noreferrer"&gt;iOS 15 UI Kit for Figma&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3aas8yx5hbozbnczc00a.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3aas8yx5hbozbnczc00a.png" alt="iOS 15 UI Kit for Figma"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A fully featured IOS 15 UI kit that is designed based on apple design guidelines. It includes hundreds of components, text, and colors styles. And comes with light and dark mode.&lt;/p&gt;

&lt;p&gt;These were some of my favorite Figma UI kits and I hope you will find them useful. Thanks for reading&lt;/p&gt;

</description>
      <category>figma</category>
      <category>ux</category>
      <category>design</category>
      <category>resource</category>
    </item>
  </channel>
</rss>
