Skip to content

Commit b0952f9

Browse files
committed
Initial commit
0 parents  commit b0952f9

File tree

11 files changed

+266
-0
lines changed

11 files changed

+266
-0
lines changed
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
title: Icon request
2+
labels:
3+
- 'icon request'
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
# Hi there! :wave:
9+
10+
Thanks for taking the time to fill out new request. Please use issues only to ask for new icons.
11+
**If you want to discuss about something that doesn't match your taste, give feedback or chat about a topic, visit [Discussions](https://github.com/orgs/vira-themes/discussions).
12+
If this discussion is not related to icon request will be closed instantly.**
13+
- type: input
14+
id: svg
15+
attributes:
16+
label: Logo url to SVG
17+
description: Insert the url to the SVG logo to associate to the files.
18+
placeholder: https://...
19+
validations:
20+
required: true
21+
- type: input
22+
id: extensions
23+
attributes:
24+
label: File extensions
25+
description: All the file extensions associated with the icon, comma separated.
26+
placeholder: txt, md, json, etc..
27+
validations:
28+
required: true
29+
- type: input
30+
id: filanames
31+
attributes:
32+
label: File names associated
33+
description: All the filenames associated with the icon, comma separated. Don't include extensions.
34+
placeholder: myfile, myfile.config
35+
validations:
36+
required: true
37+
- type: input
38+
id: languages
39+
attributes:
40+
label: Language IDs associated.
41+
description: All the language IDs associated with the icon.
42+
placeholder: text, markdown
43+
validations:
44+
required: true
45+
- type: textarea
46+
id: notes
47+
attributes:
48+
label: Additional notes
49+
description: Add extra notes or information about the icon request. Upload here the SVG logo if is not available online.
50+
validations:
51+
required: false

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
name: Bug report 🐛
2+
description: Something not working as expected? This is the place to report your issue.
3+
labels:
4+
- 'bug'
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
# Hi there! :wave:
10+
11+
Thanks for taking the time to fill out this bug report. Please use issues only to report bugs.
12+
**If you want to discuss about something that doesn't match your taste, give feedback or chat about a topic, visit [Discussions](https://github.com/Vira-Theme/vira-theme-support/discussions).
13+
Every issue opened that's not related to a bug or icon request will be closed instantly.**
14+
- type: textarea
15+
id: description
16+
attributes:
17+
label: Description
18+
description: "Tell us more about the problem that you're running into. If possible attach a screenshot or video."
19+
placeholder: What did you see? What did you expect to see?
20+
validations:
21+
required: true
22+
- type: textarea
23+
id: reproduce
24+
attributes:
25+
label: Steps to reproduce
26+
description: 'How do we reproduce the error you described above? Does an additional extension need to be installed? For issues with syntax highlighting, consider adding some example code and the language being used.'
27+
placeholder: |
28+
1. Go to '...'
29+
2. Click on '....'
30+
3. Scroll down to '....'
31+
4. Type '....'
32+
validations:
33+
required: true
34+
- type: input
35+
id: version
36+
attributes:
37+
label: Extension Version
38+
description: 'What version of `vsc-vira-theme` are you using?'
39+
placeholder: v34.5.0
40+
validations:
41+
required: true
42+
- type: input
43+
id: vsc-version
44+
attributes:
45+
label: VSCode Version
46+
description: 'What version of Visual Studio Code are you using?'
47+
placeholder: v1.92.0
48+
validations:
49+
required: true
50+
- type: dropdown
51+
id: theme
52+
attributes:
53+
label: Theme
54+
description: In which themes(s) are you experiencing the issue?
55+
multiple: false
56+
options:
57+
- Both of them
58+
- Vira Theme
59+
- Vira Theme Hight Contrast
60+
- Vira Theme Darker
61+
- Vira Theme Darker High Contrast
62+
- Vira Theme Ocean
63+
- Vira Theme Ocean High Contrast
64+
- Vira Theme Palenight
65+
- Vira Theme Palenight High Contrast
66+
- Vira Theme Deepforest
67+
- Vira Theme Deepforest High Contrast
68+
- Vira Theme Lighter
69+
- Vira Theme Lighter High Contrast

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Discussions
4+
url: https://github.com/Vira-Theme/vira-theme-support/discussions
5+
about: If you have questions or different type of requests, use the Discussions page.

.github/ISSUE_TEMPLATE/ideas.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: "Icon request 🙏"
2+
labels: ['icon request']
3+
body:
4+
- type: markdown
5+
attributes:
6+
value: |
7+
# Hi there! :wave:
8+
9+
Thanks for taking the time to fill out new request. Please use issues only to ask for new icons.
10+
**If you want to discuss about something that doesn't match your taste, give feedback or chat about a topic, visit [Discussions](https://github.com/Vira-Theme/vira-theme-support-icons/discussions).
11+
Every issue opened that's not related to a bug or icon request will be closed instantly.**
12+
- type: textarea
13+
id: description
14+
attributes:
15+
label: Description
16+
description: |
17+
Tell us more about the icon you want to request. Give all the info requested:
18+
- SVG Icon or Url
19+
- All file extensions associated with the icon"
20+
- All filenames associated with the icon
21+
- All the language IDs associated with the icon
22+
placeholder: |
23+
- https://....
24+
- `txt`, `md`
25+
- `myfile.md`, `myfile.config.txt`
26+
- `text`, 'markdown'
27+
validations:
28+
required: true

.gitignore

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
# Created by https://www.toptal.com/developers/gitignore/api/macos,windows
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=macos,windows
3+
4+
### macOS ###
5+
# General
6+
.DS_Store
7+
.AppleDouble
8+
.LSOverride
9+
10+
# Icon must end with two \r
11+
Icon
12+
13+
14+
# Thumbnails
15+
._*
16+
17+
# Files that might appear in the root of a volume
18+
.DocumentRevisions-V100
19+
.fseventsd
20+
.Spotlight-V100
21+
.TemporaryItems
22+
.Trashes
23+
.VolumeIcon.icns
24+
.com.apple.timemachine.donotpresent
25+
26+
# Directories potentially created on remote AFP share
27+
.AppleDB
28+
.AppleDesktop
29+
Network Trash Folder
30+
Temporary Items
31+
.apdisk
32+
33+
### macOS Patch ###
34+
# iCloud generated files
35+
*.icloud
36+
37+
### Windows ###
38+
# Windows thumbnail cache files
39+
Thumbs.db
40+
Thumbs.db:encryptable
41+
ehthumbs.db
42+
ehthumbs_vista.db
43+
44+
# Dump file
45+
*.stackdump
46+
47+
# Folder config file
48+
[Dd]esktop.ini
49+
50+
# Recycle Bin used on file shares
51+
$RECYCLE.BIN/
52+
53+
# Windows Installer files
54+
*.cab
55+
*.msi
56+
*.msix
57+
*.msm
58+
*.msp
59+
60+
# Windows shortcuts
61+
*.lnk
62+
63+
# End of https://www.toptal.com/developers/gitignore/api/macos,windows

README.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<!-- PROJECT LOGO -->
2+
<br />
3+
<div align="center">
4+
<a href="https://vira.build">
5+
<img src="https://vira-themes.github.io/vira-theme-support/assets/vira-logo.png" alt="Vira Theme" width="90" height="90" />
6+
</a>
7+
8+
<h3 align="center" title="Vira Theme">
9+
<img alt="Vira Theme" src="https://rawcdn.githack.com/vira-themes/vira-theme-support/4d9a73ab8650d168953782fa81a8737b8468a0dc/assets/vira-theme.png" height="30" draggable="false" />
10+
</h3>
11+
12+
<p align="center">
13+
<small>ORIGINAL TASTE, ORIGINAL COLORS.</small>
14+
<br />
15+
<a href="https://vira.build"><strong>www.vira.build</strong></a>
16+
<br />
17+
<br />
18+
<hr />
19+
<a href="https://github.com/orgs/vira-themes/discussions/1319">How to install</a>
20+
21+
<a href="https://github.com/orgs/vira-themes/discussions/categories/q-a">Report Bug</a>
22+
23+
<a href="https://github.com/orgs/vira-themes/discussions/categories/feature-requests">Request Feature</a>
24+
25+
<a href="https://vira.build">Buy License</a>
26+
<hr />
27+
</p>
28+
</div>
29+
30+
<img src="https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fmineblocks.com%2F1%2Fwiki%2Fimages%2F5%2F59%2FEmpty.png" height="30">
31+
32+
Vira Theme, as official successor of the popular Material Theme is a fresh new **👑 premium theme** extension that builds on everything you loved about Material Theme — trusted by over 7 million users worldwide — with even more features and customization options.
33+
34+
This premium extension offer a seamless, modernized experience, combining both Material Theme and Material Icons into a comprehensive package designed to elevate your Visual Studio Code environment. With refined aesthetics, enhanced customization options, and continuous updates, Vira Theme ensures a visually stunning and highly functional coding experience **designed for dark environments**.
35+
36+
### What Vira Theme includes:
37+
- **💎 Enhanced User Experience** – A refined, visually cohesive design.
38+
- **💅 Brand new variants** - A new `Carbon` variant has been added.
39+
- **📦 Single extension** - Material Theme Icons extension now lives inside Vira Theme as a single extension.
40+
- **✍️ Hand-Curated File Icons** – Hundreds of updated and new beautifully crafted icons for files and folders.
41+
- **⚙️ Advanced Customization** – Features like automatic accent sync, gradient icons, and more.
42+
- **🎯 Regular Updates** – Continuous improvements and optimizations. Trust the original.
43+
- **🦇 Dark themes only** - Unlike the old Material Theme, Vira Theme focuses exclusively on dark themes and does not include any lighter variants. This ensures a sleek, distraction-free coding experience tailored for developers who prefer a darker interface and environments.
44+
- **📣 ...and much more!**
45+
-
46+
<img src="https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fmineblocks.com%2F1%2Fwiki%2Fimages%2F5%2F59%2FEmpty.png" height="30">
47+
48+
---
49+
### [Join the community support!](https://github.com/orgs/vira-themes/discussions)
50+
---

assets/accent-selector.webp

22.9 KB
Loading

assets/activation.gif

10.2 MB
Loading

assets/vira-icons-logo.png

114 KB
Loading

assets/vira-logo.png

112 KB
Loading

0 commit comments

Comments
 (0)