Skip to content

Commit

Permalink
feat: Create new Poimandres variant
Browse files Browse the repository at this point in the history
  • Loading branch information
masterodi committed Mar 14, 2024
1 parent d56f7b0 commit 65859ee
Show file tree
Hide file tree
Showing 6 changed files with 814 additions and 4 deletions.
2 changes: 1 addition & 1 deletion demo/flutter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class MyButton extends StatefulWidget{
}

class MyButtonState extends State<MyButton>{
String flutterText = "";
String flutterText = null;
List<String> collection = ['Flutter', 'is', 'great'];
int index = 0;

Expand Down
2 changes: 1 addition & 1 deletion demo/issue-91.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { For } from 'solid-js';
import Dialog from '../../components/Dialog';
import { useJobsContext } from './jobs-provider';

// test
// Lorem ipsum dolor

const DialogJobDetails = () => {
const params = useParams();
Expand Down
7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "A dark theme.",
"type": "module",
"publisher": "mrheio",
"version": "24.1.0",
"version": "25.0.0",
"icon": "icon.png",
"engines": {
"vscode": "^1.7.0"
Expand All @@ -23,6 +23,11 @@
"label": "Darkit Astral",
"uiTheme": "vs-dark",
"path": "./themes/Darkit-Astral.json"
},
{
"label": "Darkit Poimandres",
"uiTheme": "vs-dark",
"path": "./themes/Darkit-Poimandres.json"
}
]
},
Expand Down
3 changes: 2 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { mkdirSync, writeFileSync } from 'fs';
import { darkitAstral } from './themes/darkit-astral.js';
import { darkitPoimandres } from './themes/darkit-poimandres.js';
import { darkit } from './themes/darkit.js';
import {
THEMES_PATH,
Expand Down Expand Up @@ -29,4 +30,4 @@ const buildThemes = (...themes) => {
}
};

buildThemes(darkit, darkitAstral);
buildThemes(darkit, darkitAstral, darkitPoimandres);
Loading

0 comments on commit 65859ee

Please sign in to comment.