Skip to content

Commit

Permalink
Merge pull request #3 from raykr/main
Browse files Browse the repository at this point in the history
New Feature: add Border theme checkbox
  • Loading branch information
vburzynski authored Oct 25, 2024
2 parents 154ac21 + 4706190 commit 9c694ef
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
33 changes: 33 additions & 0 deletions src/themes/BorderTheme.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
import { Theme } from "./types";

/**
* Statuses supported by the Border theme.
* {@link https://github.com/Akifyss/obsidian-border}
*/
export const BorderTheme: Theme = {
name: 'Border Theme',
statuses: [
// Basic
{ character: ' ', title: 'To Do' },
{ character: '/', title: 'In Progress' },
{ character: 'x', title: 'Done' },
{ character: '-', title: 'Canceled' },
{ character: '>', title: 'Rescheduled' },
{ character: '<', title: 'Scheduled' },
// Extras
{ character: '!', title: 'Important' },
{ character: '?', title: 'Question' },
{ character: 'i', title: 'Information' },
{ character: 'S', title: 'Amount' },
{ character: '*', title: 'Star' },
{ character: 'b', title: 'Bookmark' },
{ character: '"', title: 'Quote' },
{ character: 'n', title: 'Note' },
{ character: 'l', title: 'Location' },
{ character: 'I', title: 'Idea' },
{ character: 'p', title: 'Pro' },
{ character: 'c', title: 'Con' },
{ character: 'u', title: 'up' },
{ character: 'd', title: 'down' },
]
};
2 changes: 2 additions & 0 deletions src/themes/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { ITSTheme } from './ITSTheme';
import { LYTModeTheme } from './LYTModeTheme';
import { MinimalTheme } from './MinimalTheme';
import { ThingsTheme } from './ThingsTheme';
import { BorderTheme } from './BorderTheme';

export const themes = [
AnuPpuccinTheme,
Expand All @@ -14,4 +15,5 @@ export const themes = [
LYTModeTheme,
MinimalTheme,
ThingsTheme,
BorderTheme,
];

0 comments on commit 9c694ef

Please sign in to comment.