Kitten is an accountless, free and opensource tasklist manager.
To use Kitten online, simply visit https://flarom.github.io/kitten/.
For now, it's not possible to use kitten on the desktop.
With Kitten, you can create:
- Task lists: Organize your tasks into lists for better management.
- Tasks: Add tasks with titles, descriptions, and due dates.
- Subtasks: Break down tasks into smaller, manageable subtasks.
Tags: Categorize your tasks with custom tags for easy filtering.
To create a custom theme for Kitten, follow these steps:
- Locate the theme folder: Themes are stored in
resource/theme
. - Create a new theme file: Add a new
.json
file in thetheme
folder. Name it appropriately (e.g.,my-theme.json
). - Define your styles:
{
"name": "My theme",
"category": "Dark", // use 'Dark', 'Light' or 'Special'
"variables": {
"--background-color": "#ffffff",
"--card-color": "#dddddd",
"--field-color": "#ffffff",
"--border-color": "#666666",
"--text-color": "#111111",
"--icon-color": "#111111",
"--title-color": "#000000",
"--highlight-color": "#0000ff",
"--warning-color": "#ff0000"
}
}
- Insert your theme to the list: Locate the
themes.json
file under thetheme
folder and type the name of the file you created:
[
"theme1.json",
"my-theme.json",
"theme2.json"
]
Your theme should appear in Settings > Color Palette > "Select a theme preset"
.
Please note that you can only easly do this in the desktop version
Made with ❤️ by flarom.