<!-- Inspired/Recreation from @ruphaaganesh codepen logo -->

<div class="logo"></div>
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  position: relative;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  border-left: 40px solid #FBBC05;
  border-right: 40px solid #4385F6;
  border-top: 40px solid #EC4336;
  border-bottom: 40px solid #34A856;
}

.logo:before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  border-top: 110px solid transparent;
  border-right: 110px solid #fff;
  border-bottom: 110px solid transparent;
  border-left: 100px solid transparent;
  transform: rotate(90deg);
}

.logo:after {
  content: '';
  position: absolute;
  top: 50%;
  right: -45px;
  width: 110px;
  height: 40px;
  background: #4385F6;
  transform: translate(-5px, -20px);
  border-bottom-right-radius: 15px;
}
//follow me @code_quinn on twitter

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.