diff --git a/README.md b/README.md index 2ff91f0..84cb8c3 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,17 @@ # squip_notes -This is a *very* basic notes-taking program. It uses python with flask and pickle, to give a really light and simple web interface for note taking. +This is a basic notes-taking program. It uses python with flask and pickle, to give a really light and simple web interface for note taking. It uses the [dracula](https://github.com/dracula/dracula-theme) colors. - +![dark theme screenshot](./ssdark.png) +![light theme screenshot](./sslight.png) ![Screenshot of the application](./squipnotes.png) +# Features +* No accounts : this is made to be used as a single page (you can't have multiple user accounts). This is best suited as a personnal, self-hosted application in your own network (or it could also work for a work team). +* Simplicity: Simply get on the page and start writing. The notes syntax is markdown. +* Themes : As for now, there is a default dark theme (dracula), and an optionnal light theme (loosely based on solarized light). They can be selected via the interface. + # Themes (adding your own) All themes are in src/static/styles. They are the .css files. If you want to add your own, simply copy one of the existing files to a new one, named after the others. The numbers in the css file names determine the priority (make yours priority 0 to have it be the default). diff --git a/squipnotes.png b/squipnotes.png index e15007e..7721d36 100644 Binary files a/squipnotes.png and b/squipnotes.png differ diff --git a/ssdark.png b/ssdark.png new file mode 100644 index 0000000..95e846d Binary files /dev/null and b/ssdark.png differ diff --git a/sslight.png b/sslight.png new file mode 100644 index 0000000..b6ebc68 Binary files /dev/null and b/sslight.png differ