diff --git a/source/_patterns/02-organisms/00-global/footer.mustache b/source/_patterns/02-organisms/00-global/footer.mustache
index ad18a7e5f891f53aa4d55930b57cc0e1e06ef958..052e7d95770da3096ccf29f70cf47d43a4a71c8e 100644
--- a/source/_patterns/02-organisms/00-global/footer.mustache
+++ b/source/_patterns/02-organisms/00-global/footer.mustache
@@ -6,7 +6,7 @@
         alt=""
         class="footer-brand w-32 md:w-40 pb-6"
       />
-      <p class="para hidden md:block md:mb-4 lg:mb-0">
+      <p class="para hidden md:block md:mb-4 lg:mb-0 text-grey-200">
         Piráti, 2020. Všechna práva vyhlazena. Sdílejte a nechte
         ostatní sdílet za stejných podmínek.
       </p>
@@ -14,7 +14,7 @@
     <section class="footer__main-links bg-grey-700 text-white lg:grid grid-cols-3 gap-4">
       <div class="pt-8 pb-4 lg:py-0">
         <span class="text-xl uppercase text-white">Nová sekce</span>
-        <ul class="mt-6 space-y-2">
+        <ul class="mt-6 space-y-2 text-grey-200">
           <li>
             <a href="#">Lorem ipsum</a>
           </li>
@@ -28,7 +28,7 @@
       </div>
       <div class="py-4 lg:py-0 border-t border-grey-400 lg:border-t-0">
         <span class="text-xl uppercase text-white">Nová sekce</span>
-        <ul class="mt-6 space-y-2">
+        <ul class="mt-6 space-y-2 text-grey-200">
           <li>
             <a href="#">Lorem ipsum</a>
           </li>
@@ -42,7 +42,7 @@
       </div>
       <div class="pt-4 lg:py-0 border-t border-grey-400 lg:border-t-0">
         <span class="text-xl uppercase text-white">Nová sekce</span>
-        <ul class="mt-6 space-y-2">
+        <ul class="mt-6 space-y-2 text-grey-200">
           <li>
             <a href="#">Lorem ipsum</a>
           </li>
@@ -68,7 +68,7 @@
     <div class="container container--default">
       <div class="flex flex-col lg:flex-row lg:space-x-4 lg:items-center py-4 lg:py-8 border-t border-grey-400 lg:border-t-0">
         <span class="lg:w-1/4 text-xl uppercase text-white">Otevřenost</span>
-        <ul class="lg:w-2/4 grid grid-cols-1 lg:grid-cols-3 lg:gap-4 items-center mt-6 space-y-2 lg:mt-0 lg:space-y-0">
+        <ul class="lg:w-2/4 grid grid-cols-1 lg:grid-cols-3 lg:gap-4 items-center mt-6 space-y-2 lg:mt-0 lg:space-y-0 text-grey-200">
           <li>
             <a href="#">Transparentní účet</a>
           </li>
diff --git a/source/css/organisms/footer.pcss b/source/css/organisms/footer.pcss
index 35599283ea79192ede90d3cb50bc722e9d704490..e6c68a3150d72877f9c963d5873d329976cba14d 100644
--- a/source/css/organisms/footer.pcss
+++ b/source/css/organisms/footer.pcss
@@ -1,42 +1,3 @@
-/* .footer {
-  @apply text-grey-200;
-}
-
-.footer-section {
-  @apply py-4;
-
-  @screen md {
-    @apply py-12;
-
-    &.footer-section--dense {
-      @apply py-6;
-    }
-  }
-}
-
-.footer-splitter {
-  @apply border-t border-grey-400;
-}
-
-.footer-copy {
-  @apply pr-16;
-  order: -2;
-
-  @screen lg {
-    order: 0;
-  }
-}
-
-.footer-social {
-  order: -1;
-
-  @screen lg {
-    @apply text-right;
-    order: 1;
-  }
-} */
-
-
 .footer__main {
   @apply grid;
   grid-template-areas: "brand"