calva

Wednesdays you might find @U0ETXRFEW in the Gather Calva space. Invite is https://gather.town/invite?token=GZqrm7CR and the password is `Be kind`.
pez 2020-09-15T08:48:37.233Z

Someone savvy with theming in here? I have this problem with that I read much better with the default dark theme. But about all console/terminal apps/scripts insist on outputting errors in red and I can’t read red on black/dark. So then I have to switch to a light theme (I prefer Solarized) to read these errors, and then back to Dark+ for reading the other stuff. Drives me nuts. Is there a way to configure red? Or, I could live with configuring things such that the terminal uses a light theme and while the rest uses Dark+. (I guess I am out of luck, but anyway, maybe there is some hope somewhere…)

2020-09-15T09:03:41.233200Z

are you using macos?

2020-09-15T09:04:00.233500Z

or is this in calva?

2020-09-15T09:04:04.233800Z

please provide more context 🙂

pez 2020-09-15T09:12:16.235500Z

This is a vscode issue as far as i understand it. But I'll settle with a macos solution. 😀

2020-09-15T09:12:29.235700Z

so the context is the terminal in vscode?

pez 2020-09-15T09:13:03.236200Z

Yes. I'm a heavy user of that.

2020-09-15T09:13:32.236800Z

ok, i will investigate -- for ordinary terminals, i tend to find there are some settings one can tweak for colors.

❤️ 1
2020-09-15T09:17:51.238800Z

it looks like that allows a fair bit of tweaking

2020-09-15T09:17:59.239100Z

i saw my terminal colors change

pez 2020-09-15T09:18:47.240Z

Yeah, so this is for the integrated use. Stuff happen in some terminal panes as a result of me editing Clojure code. The pane where the terminal lives has this awesome maximize button, so that I can usually keep the terminal output quite tiny and then toggle it full window when i need to.

pez 2020-09-15T09:19:46.240600Z

That really looks super interesting. Maybe I can redefine red this way!

2020-09-15T09:20:06.240900Z

yes, it looks like one can do so.

2020-09-15T09:20:18.241200Z

and you get little squares with the color in them.

pez 2020-09-15T09:22:29.241700Z

Yes!!!! Thank you, thank you, thank you!

2020-09-15T09:23:07.242500Z

glad to hear it worked, oh fellow user of dark themes 🙂

pez 2020-09-15T09:23:18.242600Z

Haha, this is awesome.

pez 2020-09-15T09:24:23.243600Z

afaict the default settings for red and bright red are the same

2020-09-15T09:25:19.244Z

in the sample they are both set to #FB543F

2020-09-15T09:25:30.244400Z

oh my goodness, i see those little color squares here too

2020-09-15T09:25:31.244500Z

TIL

pez 2020-09-15T09:27:25.245400Z

I think they use them in slack partly because it aids in theming.

2020-09-15T09:27:51.245700Z

aha

pez 2020-09-15T10:13:12.246600Z

If anyone have similar issues reading red on black, here are settings that work for me:

"workbench.colorCustomizations": {
        // "terminal.background":"#1D2021",
        // "terminal.foreground":"#A89984",
        // "terminalCursor.background":"#A89984",
        // "terminalCursor.foreground":"#A89984",
        // "terminal.ansiBlack":"#1D2021",
        // "terminal.ansiBlue":"#0D6678",
        // "terminal.ansiBrightBlack":"#665C54",
        // "terminal.ansiBrightBlue":"#0D6678",
        // "terminal.ansiBrightCyan":"#8BA59B",
        // "terminal.ansiBrightGreen":"#95C085",
        // "terminal.ansiBrightMagenta":"#8F4673",
        "terminal.ansiRed":"#f8ada4",
        "terminal.ansiBrightRed":"#fcafa4",
        // "terminal.ansiBrightWhite":"#FDF4C1",
        // "terminal.ansiBrightYellow":"#FAC03B",
        // "terminal.ansiCyan":"#8BA59B",
        // "terminal.ansiGreen":"#95C085",
        // "terminal.ansiMagenta":"#8F4673",
        // "terminal.ansiWhite":"#A89984",
        // "terminal.ansiYellow":"#FAC03B"
      }
    }

👍 2
porkostomus 2020-09-15T18:48:49.248100Z

fwiw, I use this plug-in that lets you adjust the theme using plain CSS: https://marketplace.visualstudio.com/items?itemName=be5invis.vscode-custom-css

🤘 1
😮 2