home.social

#ff0000 — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #ff0000, aggregated by home.social.

fetched live
  1. #テレビオタク話 AK,新情報棟にニューススタジオ移転してから,UDテロップの赤のカラーコード変えた? (#FF0000 よりも寒色寄り,一般的な赤に)

  2. @trini if you're not that into CSS, and furthermore, into GTK-flavoured CSS, this might provide some helpful hints overall. This is how I'm configuring the battery widget to have a background colour for its status:

    @keyframes blink {
        to {
            background-color: #ffffff;
            color: #000000;
        }
    }
    
    /*
    #battery.charging {
        background-color: #00ff00;
        color: #000000;
    }
    */
    #battery:not(.charging):not(.full) {
        background-color: #ffffbb;
        color: #000000;
    }
    #battery.warning:not(.charging) {
        background-color: #ffd000;
        color: #000000;
    }
    /* Using steps() instead of linear as a timing function to limit cpu usage */
    #battery.critical:not(.charging) {
        background-color: #ff0000;
        color: #ffffff;
        animation-name: blink;
        animation-duration: 0.5s;
        animation-timing-function: steps(12);
        animation-iteration-count: infinite;
        animation-direction: alternate;
    }
    

    The Styling wiki page may provide more hints, and the respective module wiki pages.

  3. @templatemaker I don’t have a lightburn compatible laser but I am using k40whispered which supports SVG but requires that the colours are #FF0000 or #0000FF exactly (I think it’s a frequent default). The colours in the SVG are slightly different and I had to manually edit the file.
    If you don’t want to change the colours of the SVG (which I totally understand), maybe add a “laser cut compatible” check marks that changes this ?

  4. adding [b][size=5][color=#ff0000]This project does not condone the use of LLMs and AI[/color][/size][/b] to the description of my MSC and MWC mods

  5. @c_dan4th Are other shades of red acceptable?

    Fire engine moon, Salmon moon, Tomato moon, maybe #FF0000 moon?

  6. Roses are #FF0000
    Violets are #0000FF
    RGBA adds transparency
    So why won't you?

  7. @NicMakesStuff yay sure!!

    I wanted to show the text of a hex code as well as a little square next to it that showed the colour that it produced. I ended up just using a CSS class which is probably the best anyway:

    ```
    <code style="--color: #ff0000"">#ff0000</code>
    ```

    but was wondering if there might be a way to skip that duplication of the hex code and tuck away the styling so it could be easily imported to another project, for example. but it doesn't seem like a great case for web components I guess?

  8. @ben Do I get a pass if I restrict #ff0000 cursors to the windows where I'm root? Inquiring minds want to know.

    (Pure saturated red is now too bright for me anyway, so the cursor is actually OrangeRed on a DarkRed foreground, and don't ask me what hex values those X names map to, I'd have to look it up.)

  9. sometimes I see people using terminal windows where their cursor isn't a solid #ff0000 block and I wonder what sort of a world have we become

  10. Pro-tip: Never learn about colorspaces. "I love learning new things. Why yes, I'll eat that red apple, what a friendly snake!"

    ::crunch::

    "Wait... this apple isn't , it's outside the sRGB gamut! Why does everything look terrible? Oh no... do I have to fix years of ad-hoc color handling?"😱

    ...

    "Anyway, God then kicked me out of the 8-bit sRGB Garden of Eden after I kept pointing out banding and muddy color transitions in his rainbows"

  11. <HTML>
    <HEAD>
    <TITLE>REDESIGNING</TITLE>
    </HEAD>

    <!--COLOR-->
    <BODY BGCOLOR="#000000" TEXT="#FF0000" LINK="#0000FF" VLINK="#C0C0C0">

    I just wanted to let you know this page will be down for awhile until I get in the mood to totally revamp the page. A lot has changed and I am really not sure if I will decide to recreate the page or just delete everything off. If you would like to email me please do so at my yahoo account. Thanks to everyone who has visited over the years.

    </BODY>
    </HTML>

  12. Found my first use for more than one # in a Rust raw string: needed r##"..."## to quote HTML that contained color="#ff0000"

    #rust #rustlang

  13. <p align="center"><font color="#FF0000"><b><big><big><big>okay i got tired of tossing my pics out
    on the net so i taught myself some html and did this page in about 5 minutes.</big></big></b></font></p>

    <p align="center"><font color="#FFFFFF"><big><big><big><big>like it or not i don't really
    care.</big></big></big></big></font></p>

  14. @MatthewTitus88

    HTML color codes are hexadecimal triplets to represent RGB (Red, Green, and Blue) colors in the format (#RRGGBB). For example, red is #FF0000, which is '255' red, '0' green, and '0' blue. By varying the red, green, or blue values, you can create up to 16.7 million HTML and CSS color codes.

    #LeverageTV

  15. Sometime in around 1990 I started configuring everything I use to use a solid (non-blinking) block cursor in #ff0000. Every app (that allows customization), all the time.

    Last year, I let it blink. I think I'll keep it. 30+ years of bucking the trend, only to change my mind in the end. (Mostly because my vision sucks these days.)

    As an experiment, I also enabled the feature (in apps that support it) of using a vertical bar in insert mode, and a block in overwrite mode. That's handy, but I find it difficult to locate a thin bar cursor (even when it's red and blinking).

  16. <CENTER><FONT FACE="Comic Sans MS" SIZE=+3><FONT COLOR="#FF0000">L<FONT COLOR="#FF8429">i<FONT COLOR="#FFFF10">s<FONT COLOR="#D6EF39">a<FONT COLOR=#7BC618">'<FONT COLOR="#299C39">s<FONT COLOR="#089494"> G<FONT COLOR="#00A5C6">r<FONT COLOR="#949CCE">a<FONT COLOR="#9C7BBD">p<FONT COLOR="#CE84C6">h<FONT COLOR="#E78CC6">i<FONT COLOR="#FFAADD">c<FONT COLOR="#BFBFBF">s<FONT COLOR="#FFFFFF">!</FONT></FONT></CENTER></FONT></FONT></FONT></FONT></FONT></FONT></FONT></FONT></FONT></FONT></FONT></FONT>

  17. text-shadow.

    <span style="color: #ff0000; font-family: 'Comic Sans MS', cursive, sans-serif; text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 30px #ff0000, 0 0 40px #ff0000, 0 0 50px #ff0000, 0 0 60px #ff0000, 0 0 70px #ff0000;">You're text here</span>
    

    #ff0000 #ff0000 #ff0000 #ff0000 #ff0000 #ff0000 #ff0000 #ff0000
  18. Jour 10 du défi #1jour1kif : chaque jour, publier quelque chose que l'on aime ❤️

    #FF0000 (pour les non-informaticiens : la couleur rouge).

    C'est ma couleur préférée. Elle m'évoque la chaleur. Charnelle, elle est aussi pour moi une couleur pure.

    Car contrairement au bleu, elle ne s'accomode d'aucune nuance sans changer de nom : rapidement, elle devient orange, rose, vermillon, bordeaux, pourpre...

    À l'inverse, du cyan au bleu marine en passant par le ciel, le bleu désigne toute une étendue de couleurs bien différentes entre elles.

    Le rouge interpelle, le rouge excite, le rouge est beau quand il habille le soleil couchant...

    Et vous, quelle est votre couleur préférée ?

    Détails du défi : gayfr.social/@barbapulpe/11457

    @1jour1kif

    #gayfr #1kif1jour #Rouge