first commit

This commit is contained in:
Bram Adams
2022-12-08 02:28:02 -06:00
commit a17d1c688e
73 changed files with 168738 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{
"token": "",
"readwiseDir": "Readwise",
"frequency": "0",
"triggerOnLoad": true,
"isSyncing": false,
"lastSyncFailed": false,
"lastSavedStatusID": 0,
"currentSyncStatusID": 0,
"refreshBooks": false,
"booksToRefresh": [],
"booksIDsMap": {},
"reimportShowConfirmation": true
}

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,10 @@
{
"id": "readwise-official",
"name": "Readwise Official",
"version": "2.0.1",
"minAppVersion": "0.12.10",
"description": "Official Readwise <-> Obsidian integration",
"author": "Readwise",
"authorUrl": "https://readwise.io",
"isDesktopOnly": false
}

View File

@@ -0,0 +1,51 @@
.theme-light {
--hyper-highlight: var(--text-highlight-bg, #FFF2AC);
--error-color: #DB5461;
--success-color: #8AAA79;
--info-color: var(--text-muted, #000);
}
.theme-dark {
--hyper-highlight: var(--text-highlight-bg, #1C5998);
--error-color: #DB5461;
--success-color: #8AAA79;
--info-color: var(--text-muted, #fff);
}
.rw-info-container {
margin-right: 10px;
}
.rw-info {
color: var(--info-color);
font-size: smaller;
}
.rw-error {
color: var(--error-color);
}
.rw-success {
color: var(--success-color);
}
img[alt=rw-book-cover] {
max-height: 200px;
}
.rw-hyper-highlight {
background-color: var(--hyper-highlight);
}
.rw-modal-btns {
display: flex;
justify-content: flex-end;
}
.rw-modal-confirmation {
margin-top: 1em;
font-size: smaller;
text-align: right;
padding-right: 12px;
}