svc-ttk


Namesvc-ttk JSON
Version 2.6.3 PyPI version JSON
download
home_pagehttps://github.com/initiateit/Sun-Valley-ttk-crimson-theme
SummaryA modified theme of Sun-Valley-ttk with crimson hinting
upload_time2024-03-23 00:34:18
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseMIT License Copyright (c) rdbende <rdbende@proton.me> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords svc-ttk crimson red tcl tcl/tk theme tile tk ttk tkinter modern fluent dark-theme sun-valley windows-11 winui
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
              
# Sun Valley ttk Crimson theme  

![image](https://raw.githubusercontent.com/initiateit/Sun-Valley-ttk-crimson/main/assets/hero_dark.png?token=GHSAT0AAAAAACON7JGMK2DEFBK44RH3RXZMZP5KO5A)

This is a modified theme of Sun-Valley-ttk introducing Crimson color hints. There are various modifications and some may be questionable, but I think it suits the theme visually.  

[rdbende](https://github.com/rdbende) must take all credit. All I did was click the mouse many times and rename some items.  

The theme has the main font declarations set to [IBM Plex Sans](https://fonts.google.com/specimen/IBM+Plex+Sans) instead of [SegoeUI-VF](https://docs.microsoft.com/en-us/windows/apps/design/downloads/#fonts) when not using Microsoft Windows.  

If you do not have either installed the default font from your OS will be used.  

## Crimson Dark
![image](https://raw.githubusercontent.com/initiateit/Sun-Valley-ttk-crimson/main/assets/dark.png?token=GHSAT0AAAAAACON7JGNFT2VM6FYDTNLMAKYZP5KNCQ)  
## Crimson Light
![image](https://raw.githubusercontent.com/initiateit/Sun-Valley-ttk-crimson/main/assets/light.png?token=GHSAT0AAAAAACON7JGNV7RC5WSCGKLRSLOKZP5KNTA)  



## Installation
The theme is easily installable as a Python package

```
pip install svc-ttk
```


## Usage [![Documentation](https://img.shields.io/badge/-documentation-%23c368c4)](https://github.com/rdbende/Sun-Valley-ttk-theme/wiki/Usage-with-Python)
> **Note:**
> This theme is the same as Sun Valley TTK for all intents and purposes. As such the documentation for said theme is still relevant.
> 
> The theme will only be applied to themeable (`tkinter.ttk`) widgets, and not to the regular Tkinter widgets, they only benefit from the color scheme.

For detailed documentation, visit the [wiki page](https://github.com/rdbende/Sun-Valley-ttk-theme/wiki/Usage-with-Python).
>
```python
import tkinter
from tkinter import ttk

import svc_ttk

root = tkinter.Tk()

button = ttk.Button(root, text="Click me!")
button.pack()

# This is where the magic happens
svc_ttk.set_theme("dark")

root.mainloop()
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/initiateit/Sun-Valley-ttk-crimson-theme",
    "name": "svc-ttk",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "svc-ttk, crimson, red, tcl, tcl/tk, theme, tile, tk, ttk, tkinter, modern, fluent, dark-theme, sun-valley, windows-11, winui",
    "author": null,
    "author_email": "initiateit <jason@initiateit.com.au>, rdbende <rdbende@proton.me>",
    "download_url": "https://files.pythonhosted.org/packages/66/94/36f33a5c424ab70b05bb2f3433c6797d4b4178ae23b791fa3feaf13f3e2a/svc_ttk-2.6.3.tar.gz",
    "platform": null,
    "description": "  \n# Sun Valley ttk Crimson theme  \n\n![image](https://raw.githubusercontent.com/initiateit/Sun-Valley-ttk-crimson/main/assets/hero_dark.png?token=GHSAT0AAAAAACON7JGMK2DEFBK44RH3RXZMZP5KO5A)\n\nThis is a modified theme of Sun-Valley-ttk introducing Crimson color hints. There are various modifications and some may be questionable, but I think it suits the theme visually.  \n\n[rdbende](https://github.com/rdbende) must take all credit. All I did was click the mouse many times and rename some items.  \n\nThe theme has the main font declarations set to [IBM Plex Sans](https://fonts.google.com/specimen/IBM+Plex+Sans) instead of [SegoeUI-VF](https://docs.microsoft.com/en-us/windows/apps/design/downloads/#fonts) when not using Microsoft Windows.  \n\nIf you do not have either installed the default font from your OS will be used.  \n\n## Crimson Dark\n![image](https://raw.githubusercontent.com/initiateit/Sun-Valley-ttk-crimson/main/assets/dark.png?token=GHSAT0AAAAAACON7JGNFT2VM6FYDTNLMAKYZP5KNCQ)  \n## Crimson Light\n![image](https://raw.githubusercontent.com/initiateit/Sun-Valley-ttk-crimson/main/assets/light.png?token=GHSAT0AAAAAACON7JGNV7RC5WSCGKLRSLOKZP5KNTA)  \n\n\n\n## Installation\nThe theme is easily installable as a Python package\n\n```\npip install svc-ttk\n```\n\n\n## Usage [![Documentation](https://img.shields.io/badge/-documentation-%23c368c4)](https://github.com/rdbende/Sun-Valley-ttk-theme/wiki/Usage-with-Python)\n> **Note:**\n> This theme is the same as Sun Valley TTK for all intents and purposes. As such the documentation for said theme is still relevant.\n> \n> The theme will only be applied to themeable (`tkinter.ttk`) widgets, and not to the regular Tkinter widgets, they only benefit from the color scheme.\n\nFor detailed documentation, visit the [wiki page](https://github.com/rdbende/Sun-Valley-ttk-theme/wiki/Usage-with-Python).\n>\n```python\nimport tkinter\nfrom tkinter import ttk\n\nimport svc_ttk\n\nroot = tkinter.Tk()\n\nbutton = ttk.Button(root, text=\"Click me!\")\nbutton.pack()\n\n# This is where the magic happens\nsvc_ttk.set_theme(\"dark\")\n\nroot.mainloop()\n```\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) rdbende <rdbende@proton.me>  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "A modified theme of Sun-Valley-ttk with crimson hinting",
    "version": "2.6.3",
    "project_urls": {
        "Documentation": "https://github.com/initiateit/Sun-Valley-ttk-crimson-theme",
        "Homepage": "https://github.com/initiateit/Sun-Valley-ttk-crimson-theme",
        "Tracker": "https://github.com/initiateit/Sun-Valley-ttk-crimson-theme/issues"
    },
    "split_keywords": [
        "svc-ttk",
        " crimson",
        " red",
        " tcl",
        " tcl/tk",
        " theme",
        " tile",
        " tk",
        " ttk",
        " tkinter",
        " modern",
        " fluent",
        " dark-theme",
        " sun-valley",
        " windows-11",
        " winui"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "65aa8f8699d6095fa77dda326b84ea21e4d572c4f47e3a62c4912cc9d55170f6",
                "md5": "ecdbefd960506c8db81932880c871939",
                "sha256": "dc4f6c874e62dab19c0165b26bae020e6d1decfc294ae49166b70f6e36bfa017"
            },
            "downloads": -1,
            "filename": "svc_ttk-2.6.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ecdbefd960506c8db81932880c871939",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 53384,
            "upload_time": "2024-03-23T00:34:16",
            "upload_time_iso_8601": "2024-03-23T00:34:16.548855Z",
            "url": "https://files.pythonhosted.org/packages/65/aa/8f8699d6095fa77dda326b84ea21e4d572c4f47e3a62c4912cc9d55170f6/svc_ttk-2.6.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "669436f33a5c424ab70b05bb2f3433c6797d4b4178ae23b791fa3feaf13f3e2a",
                "md5": "5d01da94df9454350f3fc976d2736f2a",
                "sha256": "bf092251edcbb7efc1318d04472623aceee18269883a3fa2d5467e1db5995fda"
            },
            "downloads": -1,
            "filename": "svc_ttk-2.6.3.tar.gz",
            "has_sig": false,
            "md5_digest": "5d01da94df9454350f3fc976d2736f2a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 53322,
            "upload_time": "2024-03-23T00:34:18",
            "upload_time_iso_8601": "2024-03-23T00:34:18.988000Z",
            "url": "https://files.pythonhosted.org/packages/66/94/36f33a5c424ab70b05bb2f3433c6797d4b4178ae23b791fa3feaf13f3e2a/svc_ttk-2.6.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-23 00:34:18",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "initiateit",
    "github_project": "Sun-Valley-ttk-crimson-theme",
    "github_not_found": true,
    "lcname": "svc-ttk"
}
        
Elapsed time: 0.20625s