···11+---
22+title: Review of Wicked Cushions
33+date: 2024-01-13
44+image: blog/2024/wc-mini-review/wc_shot
55+---
66+77+export const PercentageRing = ({ percentage }) => {
88+ let color = "green";
99+ if (percentage < 50) {
1010+ color = "red";
1111+ }
1212+ if (percentage < 80) {
1313+ color = "yellow";
1414+ }
1515+ return (
1616+ <div className="relative inline-block mt-2 ml-20 md:ml-6">
1717+ <div
1818+ className={`w-36 md:w-48 h-36 md:h-48 bg-bg-2 dark:bg-bgDark-2 border-8 border-${color}-light dark:border-${color}Dark-light rounded-full`}
1919+ >
2020+ <div
2121+ className="absolute top-0 left-0 w-full h-full border-8 border-green-500 rounded-full"
2222+ style={{
2323+ clip: `rect(0, 1em, 1em, ${(percentage / 100) * 2}em)`,
2424+ }}
2525+ ></div>
2626+ </div>
2727+ <div className="absolute inset-0 flex items-center justify-center">
2828+ <span className="text-2xl md:text-4xl font-bold">
2929+ {percentage / 10}/10
3030+ </span>
3131+ </div>
3232+ </div>
3333+ );
3434+};
3535+3636+I wear headphones a lot. The thing that makes me frustrated with my headphones is how they feel on my head. I use DT 770 Pro headphones at my gaming desk and Audiotechnica ATH-M40x headphones at my work desk, and the cushions on the ATH-M40x's kinda suck over longer periods of time.
3737+3838+This company called [Wicked Cushions](https://wickedcushions.com/) sponsored [Linus Tech Tips](https://www.youtube.com/@LinusTechTips)' coverage of CES 2024 and I saw that it was like $25 on Amazon so I used it to get free shipping for some sponges and a headphone extension cable for my husband. I figured there was nothing to lose by going for it.
3939+4040+<XeblogPicture
4141+ path="blog/2024/wc-mini-review/wc_shot"
4242+ alt="A picture of black headphones with pink multicolored ear cushions. The cushions are about 1.5 cm thick."
4343+/>
4444+4545+What can I say? They're cushions. They're squishy and feel nice on my head.
4646+4747+Installation was a little finnicky (I'm pretty sure the cushions on the ATH-M40x headphones weren't really designed to be easily user-replaceable for good reason), but once I shimmied it around a few times everything fell into place.
4848+4949+I had very low expectations going into them, but overall I think they are a solid upgrade for solid headphones. I think it also increased the sound deadening a bit, but I don't really have any easy way to test that without putting the old cushions on. That's a bit more effort than I want to give right now.
5050+5151+I'll write a followup article in a few months if I have any other opinions about these things. I seriously doubt I will, but I might. It's headphone cushions, it's pretty hard to have opinions about them because they're good enough.
5252+5353+<PercentageRing percentage={80} />