-
Does anyone know what theme and font is being used at the image of Tailwind Intellisense extension for vs code? I've included the image below for reference. I really like the rounded corners of the color highlights in the intellisense and the background theme. Thanks in advance |
Beta Was this translation helpful? Give feedback.
Replies: 9 comments 10 replies
-
I don't know which theme is that, but i have another alternative that is still good. It's called "Git Hub theme", and for the font you can use "Font Switcher" and use the Hack font. |
Beta Was this translation helpful? Give feedback.
-
Tokyo night is The theme used in screenshots . |
Beta Was this translation helpful? Give feedback.
-
Were you able to find it? It's not Tokyo night. |
Beta Was this translation helpful? Give feedback.
-
It is Tailwind Moon |
Beta Was this translation helpful? Give feedback.
-
Hi @ramiraza i am busy to creating a vscode theme that looks like the new tailwind docs website https://tailwindcss.com/ Its still a work in progres but i am in the good direction. |
Beta Was this translation helpful? Give feedback.
-
Tailwind theme search in vs code you will get |
Beta Was this translation helpful? Give feedback.
-
It is an actual VScode theme, which is used on play.tailwindcss.com: The site is open-source, and by digging into the code I found where the theme colors are being defined: light theme and dark theme. And editor customizations other than colors (e.g. the autocomplete widget border-radius etc) are done in this CSS file. Seems possible to extract that into a standalone VScode theme 🔥. |
Beta Was this translation helpful? Give feedback.
-
Hi everyone! Check this out and follow the steps. |
Beta Was this translation helpful? Give feedback.
-
This is the closest I got to it. The theme is Tailwind Colour Themes with the following tweaks found here Tweaks{
"editor.fontFamily": "Fira Code",
"editor.fontSize": 12,
"editor.fontLigatures": true,
"editor.lineHeight": 2,
"workbench.colorTheme": "Tailwind Moon Blue"
"editor.tokenColorCustomizations": {
"[Tailwind Moon Blue]": {
"strings": "#7dd3fc",
"textMateRules": [
{
"name": "TW HTML tags",
"scope": ["punctuation.definition.tag", "punctuation.definition.string.begin.html", "punctuation.definition.string.end.html", "punctuation.separator.key-value.html"],
"settings": {
"foreground": "#63738A"
}
},
{
"name": "TW CSS unit / vue",
"scope": ["keyword.other", "invalid.illegal.unrecognized-tag.html"],
"settings": {
"foreground": "#99F6E4"
}
},
{
"name": "TW CSS number",
"scope": " constant.numeric.css",
"settings": {
"foreground": "#f8fafc"
}
},
{
"name": "TW CSS property",
"scope": " support.type.property-name.css",
"settings": {
"foreground": "#7dd3fc"
}
},
{
"name": "TW Entity",
"scope": ["entity.name.tag.template.html.vue","entity.name.tag.html"],
"settings": {
"foreground": "#F472B6"
}
},
{
"name": "TW Vue Attributes",
"scope": "entity.other.attribute-name.html.vue",
"settings": {
"foreground": "#A78BFA"
}
},
{
"name": "TW Entity HTML",
"scope": "entity.other.attribute-name.html",
"settings": {
"foreground": "#CBD5E1"
}
}
]
}
}
}
Demo |
Beta Was this translation helpful? Give feedback.
Tailwind Weekly #189: New Catalyst Update, Course Template Sneak Peek, and New Editor Themes coming soon 🔥
New Tailwind CSS editor themes just around the corner 💻️
If you have seen any of the recent Tailwind CSS channel videos, then you probably saw that they have their own custom editor theme. Well, they decided to share it with everyone and are planning to release it soon 😄