Metadata-Version: 1.1
Name: jupyterthemes
Version: 0.13.9
Summary: Select and install a Jupyter notebook theme
Home-page: https://github.com/dunovank/jupyter-themes
Author: dunovank
Author-email: dunovank@gmail.com
License: MIT
Download-URL: https://github.com/dunovank/jupyter-themes/tarball/v0.13.9
Description: ### TravisCI Build status:
        ![image](https://travis-ci.org/dunovank/jupyter-themes.svg?branch=develop)
        
        ### Interactive Binder Demo
        [![Binder](http://mybinder.org/badge.svg)](http://mybinder.org:/repo/dunovank/jupyter-themes)
        
        ### Links
        * [jupyterthemes on PyPI](https://pypi.python.org/pypi/jupyterthemes/)
        * [jupyterthemes on GitHub](https://github.com/dunovank/jupyter-themes)
        
        ### Requirements
        * Python 2.7, 3.3, 3.4, or 3.5
        * Jupyter ([Anaconda](https://www.continuum.io/downloads) recommended)
        
        ### Recent updates
        
        ###### v0.13.8
        * add monokai theme ([bdell](https://github.com/bdell) : [PR #59](https://github.com/dunovank/jupyter-themes/pull/59))
        * apply theme to auto-complete menu ([svendx4f](https://github.com/svendx4f) : [PR #69](https://github.com/dunovank/jupyter-themes/pull/69))
        * added support for user less/precompiled themes ([osamaar](https://github.com/osamaar) : [PR #82](https://github.com/dunovank/jupyter-themes/pull/82))
        
        ###### v0.13.7
        * misc visibility improvements
        
        ###### v0.13.6
        * altlayout is now default for grade3 (white bg for txt/markdown)
        
        ###### v0.13.5
        * full functionality has been added for Python 3.5
        * better theme integration for command palette, keyboard shortcuts
        * integration with Running, Clusters, and NBExtension pages.
        * added font options for code-cells and notebook body
        * vim nbextension compatibility provided by [alextfkd](https://github.com/alextfkd)
        * customizable cursor color and size
        
        ### Install with pip
        ```sh
        pip install jupyterthemes
        ```
        
        ### Command Line Usage
        ```
        usage: jt [-h] [-l] [-t THEME] [-f MONOFONT] [-fs MONOSIZE] [-nf NBFONT]
                  [-nfs NBFONTSIZE] [-tf TCFONT] [-tfs TCFONTSIZE] [-m MARGINS]
                  [-cursw CURSORWIDTH] [-cursc CURSORCOLOR] [-cellw CELLWIDTH]
                  [-lineh LINEHEIGHT] [-alt] [-vim] [-T] [-N] [-r]
        ```
        |        options        |   arg     |     default   |
        |:----------------------|:---------:|:-------------:|
        | Usage help            |  -h       |      --       |
        | List Themes           |  -l       |      --       |
        | Theme Name to Install |  -t       |      --       |
        | Code Font             |  -f       |   droidmono   |
        | Code Font-Size        |  -fs      |      11       |
        | Notebook Font         |  -nf      |    exosans    |
        | Notebook Font Size    |  -nfs     |      13       |
        | Text/MD Cell Font     |  -tf      |   loraserif   |
        | Text/MD Cell Fontsize |  -tfs     |      13       |
        | Intro Page Margins    |  -m       |     auto      |
        | Cell Width            |  -cellw   |      980      |
        | Line Height           |  -lineh   |      170      |
        | Cursor Width          |  -cursw   |       2       |
        | Cursor Color          |  -cursc   |      --       |
        | Alt Text/MD Layout    |  -alt     |      --       |
        | Alt Prompt Layout     |  -altp    |      --       |
        | Style Vim NBExt*      |  -vim     |      --       |
        | Toolbar Visible       |  -T       |      --       |
        | Name & Logo Visible   |  -N       |      --       |
        | Restore Default       |  -r       |      --       |
        
        ### Examples
        ```sh
        # list available themes
        # oceans16 | grade3 | chesterish | onedork | monokai
        jt -l
        
        # select theme...
        jt -t chesterish
        
        # toggle toolbar ON and notebook name ON
        jt -t grade3 -T -N
        
        # set code font to 'Roboto Mono' 12pt
        # (see monospace font table below)
        jt -t oceans16 -f roboto -fs 12
        
        # set code font to Fira Mono, 11.5pt
        # 3digit font-size gets converted into float (115-->11.5)
        jt -t grade3 -f fira -fs 115
        
        # set text-cell/markdown and notebook fonts
        # (see sans-serif & serif font tables below)
        jt -t onedork -tf georgiaserif -nf droidsans
        
        # adjust cell width, line-height of codecells
        jt -t chesterish -cellw 900 -lineh 170
        
        # fix the container-margins on the intro page (defaults to 'auto')
        jt -t onedork -m 200
        
        # adjust cursor width (in px) and make cursor red (r)
        # options: b (blue), o (orange), r (red), p (purple), g (green)
        jt -t grade3 -cursc r -cursw 5
        
        # toggle toolbar ON and notebook name ON
        jt -t grade3 -T -N
        
        # choose alternate txt/markdown layout (-alt)
        # and alternate cell prompt (narrow, no numbers)
        jt -t grade3 -alt -altp
        
        # restore default theme
        jt -r
        ```
        
        
Keywords: jupyter,ipython,notebook,themes,css
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
