../notes
source

myron-themes previews

Published 2021-01-19, last edit 2025-07-26

This page shows previews of the myron-themes colorschemes for emacs. The readme there has more details.

1. myron-dogman

Colors
_ :normal :weak :strong :focused
:background #9efff3 #92ede7 #92d9dd #e0d9f8
:foreground #036458 #005953 #064d51 #524b6a
:faded #00825e #007753 #006b47 #007753
:primary #854cfb #7940ef #6d34e3 #7940ef
:assumed #f256c9 #e14db9 #d144a7 #e14db9
:alt #1a8500 #0e7900 #026d00 #0e7900
:strings #1a8500 #0e7900 #026d00 #0e7900
#include <stdio.h>

int main(void)
{
    int i;
    // loop to one hundred...
    for(i=1; i<=100; ++i)
    {
        if (i % 3 == 0)
            printf("Fizz");
        if (i % 5 == 0)
            printf("Buzz");
        if ((i % 3 != 0) && (i % 5 != 0))
            printf("number=%d", i);
        printf("\n");
    }

    // all done!
    return 0;
}

2. myron-grayscale

Colors
_ :normal :weak :strong :focused
:background #f3f3f3 #e0e0e0 #d3d3d3 #e4e4e4
:foreground #5c5c5c #515151 #494949 #535353
:faded #8c8c8c #7f7f7f #767676 #828282
:primary #777777 #6b6b6b #636363 #6e6e6e
:assumed #686868 #5c5c5c #545454 #5f5f5f
:alt #8c8c8c #7f7f7f #767676 #828282
:strings #777777 #6b6b6b #636363 #6e6e6e
#include <stdio.h>

int main(void)
{
    int i;
    // loop to one hundred...
    for(i=1; i<=100; ++i)
    {
        if (i % 3 == 0)
            printf("Fizz");
        if (i % 5 == 0)
            printf("Buzz");
        if ((i % 3 != 0) && (i % 5 != 0))
            printf("number=%d", i);
        printf("\n");
    }

    // all done!
    return 0;
}

3. myron-kobo

Colors
_ :normal :weak :strong :focused
:background #d7d2cf #ded9d6 #cac5c2 #ccc7c4
:foreground #524d4a #57524f #4a4542 #4b4643
:faded #67625f #6b6663 #5e5956 #5f5a57
:primary #626700 #666b00 #595e00 #5a5f00
:assumed #524d4a #57524f #4a4542 #4b4643
:alt #757b00 #7a8000 #6c7100 #6e7400
:strings #757b00 #7a8000 #6c7100 #6e7400
#include <stdio.h>

int main(void)
{
    int i;
    // loop to one hundred...
    for(i=1; i<=100; ++i)
    {
        if (i % 3 == 0)
            printf("Fizz");
        if (i % 5 == 0)
            printf("Buzz");
        if ((i % 3 != 0) && (i % 5 != 0))
            printf("number=%d", i);
        printf("\n");
    }

    // all done!
    return 0;
}

4. myron-mcfay

Colors
_ :normal :weak :strong :focused
:background #e8ebec #d6d7d8 #cdcacb #a6d0ed
:foreground #444748 #3a3b3c #353233 #0c3653
:faded #6a6d6e #606162 #5b5859 #335d7a
:primary #c6007f #bb0074 #ae0067 #ad0066
:assumed #0065c8 #005ec1 #0055b8 #0055b8
:alt #006e96 #006890 #005f87 #005f87
:strings #007c00 #007500 #006d00 #006c00
#include <stdio.h>

int main(void)
{
    int i;
    // loop to one hundred...
    for(i=1; i<=100; ++i)
    {
        if (i % 3 == 0)
            printf("Fizz");
        if (i % 5 == 0)
            printf("Buzz");
        if ((i % 3 != 0) && (i % 5 != 0))
            printf("number=%d", i);
        printf("\n");
    }

    // all done!
    return 0;
}

5. myron-room

Colors
_ :normal :weak :strong :focused
:background #f0f0f0 #dddddd #d0d0d0 #fed3c8
:foreground #5a5a5a #4f4f4f #474747 #6e4338
:faded #8a8a8a #7d7d7d #747474 #9e7368
:primary #0095ac #00879f #007e97 #803bea
:assumed #5a5a5a #4f4f4f #474747 #6e4338
:alt #00acc3 #009eb5 #0094ab #9454ff
:strings #cb7000 #b56800 #a66300 #626d1e
#include <stdio.h>

int main(void)
{
    int i;
    // loop to one hundred...
    for(i=1; i<=100; ++i)
    {
        if (i % 3 == 0)
            printf("Fizz");
        if (i % 5 == 0)
            printf("Buzz");
        if ((i % 3 != 0) && (i % 5 != 0))
            printf("number=%d", i);
        printf("\n");
    }

    // all done!
    return 0;
}

6. myron-storm

Colors
_ :normal :weak :strong :focused
:background #e3f0ed #ccd9d6 #c3d0cd #ecccec
:foreground #697673 #5b6865 #55625f #7a5a7a
:faded #7e8b88 #6e7b78 #687572 #8e6e8e
:primary #a356a4 #924894 #8b418d #a74908
:assumed #108082 #067074 #026a6f #a74446
:alt #a95e5b #984f49 #924942 #00716d
:strings #0e8618 #05760f #006f0a #a138a1
#include <stdio.h>

int main(void)
{
    int i;
    // loop to one hundred...
    for(i=1; i<=100; ++i)
    {
        if (i % 3 == 0)
            printf("Fizz");
        if (i % 5 == 0)
            printf("Buzz");
        if ((i % 3 != 0) && (i % 5 != 0))
            printf("number=%d", i);
        printf("\n");
    }

    // all done!
    return 0;
}

7. myron-struan

Colors
_ :normal :weak :strong :focused
:background #f2e9e3 #ded5d4 #d2c9ce #e1c5c0
:foreground #544b45 #483f3e #40373c #544b45
:faded #a35a29 #a93b2f #a1276b #a35a29
:primary #8f5d7f #825072 #7b496b #8f5d7f
:assumed #2a7783 #1d6a76 #15626e #2a7783
:alt #916156 #845449 #7d4d42 #916156
:strings #677400 #5b6700 #535f00 #677400
#include <stdio.h>

int main(void)
{
    int i;
    // loop to one hundred...
    for(i=1; i<=100; ++i)
    {
        if (i % 3 == 0)
            printf("Fizz");
        if (i % 5 == 0)
            printf("Buzz");
        if ((i % 3 != 0) && (i % 5 != 0))
            printf("number=%d", i);
        printf("\n");
    }

    // all done!
    return 0;
}