Server IP : 85.214.239.14 / Your IP : 3.147.56.125 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/2/root/lib/python3/dist-packages/pygments/styles/ |
Upload File : |
""" pygments.styles.gruvbox ~~~~~~~~~~~~~~~~~~~~~~~ pygments version of the "gruvbox" vim theme. https://github.com/morhetz/gruvbox :copyright: Copyright 2006-2022 by the Pygments team, see AUTHORS. :license: BSD, see LICENSE for details. """ from pygments.style import Style from pygments.token import Token, Keyword, Name, Comment, String, Error, \ Number, Operator, Generic class GruvboxDarkStyle(Style): """ Pygments version of the "gruvbox" dark vim theme. """ background_color = '#282828' highlight_color = '#ebdbb2' styles = { Token: '#dddddd', Comment: 'italic #928374', Comment.PreProc: '#8ec07c', Comment.Special: 'bold italic #ebdbb2', Keyword: '#fb4934', Operator.Word: '#fb4934', String: '#b8bb26', String.Escape: '#fe8019', Number: '#d3869b', Name.Builtin: '#fe8019', Name.Variable: '#83a598', Name.Constant: '#d3869b', Name.Class: '#8ec07c', Name.Function: '#8ec07c', Name.Namespace: '#8ec07c', Name.Exception: '#fb4934', Name.Tag: '#8ec07c', Name.Attribute: '#fabd2f', Name.Decorator: '#fb4934', Generic.Heading: 'bold #ebdbb2', Generic.Subheading: 'underline #ebdbb2', Generic.Deleted: 'bg:#fb4934 #282828', Generic.Inserted: 'bg:#b8bb26 #282828', Generic.Error: '#fb4934', Generic.Emph: 'italic', Generic.Strong: 'bold', Generic.Prompt: '#a89984', Generic.Output: '#f2e5bc', Generic.Traceback: '#fb4934', Error: 'bg:#fb4934 #282828' } class GruvboxLightStyle(Style): """ Pygments version of the "gruvbox" Light vim theme. """ background_color = '#fbf1c7' highlight_color = '#3c3836' styles = { Comment: 'italic #928374', Comment.PreProc: '#427b58', Comment.Special: 'bold italic #3c3836', Keyword: '#9d0006', Operator.Word: '#9d0006', String: '#79740e', String.Escape: '#af3a03', Number: '#8f3f71', Name.Builtin: '#af3a03', Name.Variable: '#076678', Name.Constant: '#8f3f71', Name.Class: '#427b58', Name.Function: '#427b58', Name.Namespace: '#427b58', Name.Exception: '#9d0006', Name.Tag: '#427b58', Name.Attribute: '#b57614', Name.Decorator: '#9d0006', Generic.Heading: 'bold #3c3836', Generic.Subheading: 'underline #3c3836', Generic.Deleted: 'bg:#9d0006 #fbf1c7', Generic.Inserted: 'bg:#79740e #fbf1c7', Generic.Error: '#9d0006', Generic.Emph: 'italic', Generic.Strong: 'bold', Generic.Prompt: '#7c6f64', Generic.Output: '#32302f', Generic.Traceback: '#9d0006', Error: 'bg:#9d0006 #fbf1c7' }