Skip to content

Commit 71cf1aa

Browse files
Merge pull request #236 from oszoou/feat/intellij-port
feat(port): add intellij
2 parents 10e20f3 + 120b947 commit 71cf1aa

6 files changed

Lines changed: 122 additions & 0 deletions

File tree

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,17 @@
109109
<span>Zed</span>
110110
</p>
111111
</td>
112+
<td valign="top">
113+
<p align="center">
114+
<a href="https://github.com/daltonmenezes/aura-theme/tree/main/packages/intellij">
115+
<img src="https://github.com/user-attachments/assets/c2707563-66fc-40cd-bc3e-95a63f788349" align="center" />
116+
</a>
117+
<br/><br/>
118+
<span>Intellij</span>
119+
</p>
120+
</td>
121+
</tr>
122+
<tr>
112123
<td valign="top">
113124
<p align="center">
114125
<a href="https://github.com/daltonmenezes/aura-theme/tree/main/packages/npp">

packages/intellij/README.md

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<p align="center">
2+
<img src="https://github.com/daltonmenezes/assets/blob/master/images/aura-theme/new-heading.png?raw=true" alt="Aura Theme" width="70%" />
3+
</p>
4+
5+
<p align="center">
6+
✨ A beautiful dark theme for Intellij and other apps
7+
<br><br>
8+
9+
<!-- Patreon -->
10+
<a href="https://www.patreon.com/daltonmenezes">
11+
<img alt="patreon url" src="https://img.shields.io/badge/support%20on-patreon-1C1E26?style=for-the-badge&labelColor=1C1E26&color=61ffca">
12+
</a>
13+
14+
<!-- version -->
15+
<a href="#">
16+
<img alt="version" src="https://img.shields.io/badge/version%20-v1.0.0-1C1E26?style=for-the-badge&labelColor=1C1E26&color=61ffca">
17+
</a>
18+
</p>
19+
20+
<p align="center">
21+
<img alt="preview" src="https://github.com/user-attachments/assets/471ae8d6-7da3-4624-ad30-82ec2dd950fe" />
22+
</p>
23+
24+
25+
# Installation
26+
27+
<a href="https://plugins.jetbrains.com/plugin/27073-aura-theme"><img src="./btn.png" alt="Get from Marketplace"></a>
28+
29+
# Contributors
30+
31+
<table>
32+
<thead>
33+
<tr>
34+
<td valign="bottom"><p align="center">
35+
<a href="https://github.com/Oszoou">
36+
<img src="https://github.com/Oszoou.png?size=100" align="center" />
37+
</a>
38+
</p></td>
39+
<td valign="bottom"><p align="center">
40+
<a href="https://github.com/daltonmenezes">
41+
<img src="https://github.com/daltonmenezes.png?size=100" align="center" />
42+
</a>
43+
</p></td>
44+
</tr>
45+
</thead>
46+
47+
<tbody>
48+
<tr>
49+
<td><a href="https://github.com/Oszoou">Oszoou</a></td>
50+
<td><a href="https://github.com/daltonmenezes">Dalton Menezes</a></td>
51+
</tr>
52+
</tbody>
53+
</table>
54+
55+
# License
56+
[MIT © Dalton Menezes](https://github.com/daltonmenezes/aura-theme/blob/main/LICENSE)

packages/intellij/btn.png

24.1 KB
Loading

src/ports/intellij/extra/btn.png

24.1 KB
Loading

src/ports/intellij/index.ts

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import { AuraAPI } from 'core'
2+
import { resolve } from 'path'
3+
4+
export async function IntellijPort(Aura: AuraAPI) {
5+
const { createReadme, copyExtraFiles } = Aura
6+
const templateFolder = resolve(__dirname, 'templates')
7+
8+
const portName = 'Intellij'
9+
const version = '1.0.0'
10+
11+
const previewURL =
12+
'https://github.com/user-attachments/assets/471ae8d6-7da3-4624-ad30-82ec2dd950fe'
13+
14+
await Promise.all([
15+
copyExtraFiles(__dirname),
16+
17+
createReadme({
18+
template: resolve(templateFolder, 'README.md'),
19+
replacements: {
20+
portName,
21+
version,
22+
previewURL,
23+
},
24+
}),
25+
])
26+
}
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{{{ basic-heading }}}
2+
3+
# Installation
4+
5+
<a href="https://plugins.jetbrains.com/plugin/27073-aura-theme"><img src="./btn.png" alt="Get from Marketplace"></a>
6+
7+
# Contributors
8+
9+
<table>
10+
<thead>
11+
<tr>
12+
<td valign="bottom"><p align="center">
13+
<a href="https://github.com/Oszoou">
14+
<img src="https://github.com/Oszoou.png?size=100" align="center" />
15+
</a>
16+
</p></td>
17+
{{{ author-thead }}}
18+
</tr>
19+
</thead>
20+
21+
<tbody>
22+
<tr>
23+
<td><a href="https://github.com/Oszoou">Oszoou</a></td>
24+
{{{ author-tbody }}}
25+
</tr>
26+
</tbody>
27+
</table>
28+
29+
{{{ footer }}}

0 commit comments

Comments
 (0)