lowpheye / twitter imlofier

// ==UserScript==
// @name     twitter imlofier
// @match  https://twitter.com/*
// @grant    GM_addStyle
// @run-at   document-start
// @description adds the imlofi.xyz color palette to twitter
// @version 1.0
// @license MIT
// ==/UserScript==

GM_addStyle ( `
.r-l5o3uw {
	background: linear-gradient(117deg, rgba(197, 191, 239, 1) 0%, rgb(255, 154, 186) 22%, rgba(168, 132, 183, 1) 64%, rgba(82, 95, 140, 1) 100%)!important;
    background-clip: padding-box;
    background-size: contain;
}
.r-1vtznih{
	background: linear-gradient(117deg, rgba(197, 191, 239, 1) 0%, rgb(255, 154, 186) 22%, rgba(168, 132, 183, 1) 64%, rgba(82, 95, 140, 1) 100%)!important;
    background-clip: padding-box;
}
.r-1vtznih::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1; /* place the pseudo-element above the parent element's content */
}
` );