Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3 /
dist-packages /
pygments /
styles /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2025-05-13 15:07
__init__.py
3.32
KB
-rw-r--r--
2023-01-01 08:34
abap.py
705
B
-rw-r--r--
2023-01-01 08:34
algol.py
2.16
KB
-rw-r--r--
2023-01-01 08:34
algol_nu.py
2.18
KB
-rw-r--r--
2023-01-01 08:34
arduino.py
4.34
KB
-rw-r--r--
2023-01-01 08:34
autumn.py
2.05
KB
-rw-r--r--
2023-01-01 08:34
borland.py
1.48
KB
-rw-r--r--
2023-01-01 08:34
bw.py
1.28
KB
-rw-r--r--
2023-01-01 08:34
colorful.py
2.67
KB
-rw-r--r--
2023-01-01 08:34
default.py
2.43
KB
-rw-r--r--
2023-01-01 08:34
dracula.py
3.24
KB
-rw-r--r--
2023-01-01 08:34
emacs.py
2.38
KB
-rw-r--r--
2023-01-01 08:34
friendly.py
2.44
KB
-rw-r--r--
2023-01-01 08:34
friendly_grayscale.py
2.64
KB
-rw-r--r--
2023-01-01 08:34
fruity.py
1.24
KB
-rw-r--r--
2023-01-01 08:34
gh_dark.py
3.4
KB
-rw-r--r--
2023-01-01 08:34
gruvbox.py
3.15
KB
-rw-r--r--
2023-01-01 08:34
igor.py
692
B
-rw-r--r--
2023-01-01 08:34
inkpot.py
2.25
KB
-rw-r--r--
2023-01-01 08:34
lilypond.py
1.97
KB
-rw-r--r--
2023-01-01 08:34
lovelace.py
3.04
KB
-rw-r--r--
2023-01-01 08:34
manni.py
2.29
KB
-rw-r--r--
2023-01-01 08:34
material.py
3.99
KB
-rw-r--r--
2023-01-01 08:34
monokai.py
4.94
KB
-rw-r--r--
2023-01-01 08:34
murphy.py
2.64
KB
-rw-r--r--
2023-01-01 08:34
native.py
1.9
KB
-rw-r--r--
2023-01-01 08:34
nord.py
5.12
KB
-rw-r--r--
2023-01-01 08:34
onedark.py
1.63
KB
-rw-r--r--
2023-01-01 08:34
paraiso_dark.py
5.4
KB
-rw-r--r--
2023-01-01 08:34
paraiso_light.py
5.4
KB
-rw-r--r--
2023-01-01 08:34
pastie.py
2.37
KB
-rw-r--r--
2023-01-01 08:34
perldoc.py
2.08
KB
-rw-r--r--
2023-01-01 08:34
rainbow_dash.py
2.38
KB
-rw-r--r--
2023-01-01 08:34
rrt.py
874
B
-rw-r--r--
2023-01-01 08:34
sas.py
1.36
KB
-rw-r--r--
2023-01-01 08:34
solarized.py
3.98
KB
-rw-r--r--
2023-01-01 08:34
staroffice.py
770
B
-rw-r--r--
2023-01-01 08:34
stata_dark.py
1.17
KB
-rw-r--r--
2023-01-01 08:34
stata_light.py
1.2
KB
-rw-r--r--
2023-01-01 08:34
tango.py
6.87
KB
-rw-r--r--
2023-01-01 08:34
trac.py
1.84
KB
-rw-r--r--
2023-01-01 08:34
vim.py
1.88
KB
-rw-r--r--
2023-01-01 08:34
vs.py
1
KB
-rw-r--r--
2023-01-01 08:34
xcode.py
1.42
KB
-rw-r--r--
2023-01-01 08:34
zenburn.py
2.1
KB
-rw-r--r--
2023-01-01 08:34
Save
Rename
""" pygments.styles.nord ~~~~~~~~~~~~~~~~~~~~ pygments version of the "nord" theme by Arctic Ice Studio https://www.nordtheme.com/ :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 Keyword, Name, Comment, String, Error, Number, \ Operator, Generic, Whitespace, Punctuation, Text, Token class NordStyle(Style): """ Pygments version of the "nord" theme by Arctic Ice Studio. """ line_number_color = "#D8DEE9" line_number_background_color = "#242933" line_number_special_color = "#242933" line_number_special_background_color = "#D8DEE9" background_color = "#2E3440" highlight_color = "#3B4252" styles = { Token: "#d8dee9", Whitespace: '#d8dee9', Punctuation: '#eceff4', Comment: 'italic #616e87', Comment.Preproc: '#5e81ac', Keyword: 'bold #81a1c1', Keyword.Pseudo: 'nobold #81a1c1', Keyword.Type: 'nobold #81a1c1', Operator: 'bold #81a1c1', Operator.Word: 'bold #81a1c1', Name: '#d8dee9', Name.Builtin: '#81a1c1', Name.Function: '#88c0d0', Name.Class: '#8fbcbb', Name.Namespace: '#8fbcbb', Name.Exception: '#bf616a', Name.Variable: '#d8dee9', Name.Constant: '#8fbcbb', Name.Entity: '#d08770', Name.Attribute: '#8fbcbb', Name.Tag: '#81a1c1', Name.Decorator: '#d08770', String: '#a3be8c', String.Doc: '#616e87', String.Interpol: '#a3be8c', String.Escape: '#ebcb8b', String.Regex: '#ebcb8b', String.Symbol: '#a3be8c', String.Other: '#a3be8c', Number: '#b48ead', Generic.Heading: 'bold #88c0d0', Generic.Subheading: 'bold #88c0d0', Generic.Deleted: '#bf616a', Generic.Inserted: '#a3be8c', Generic.Error: '#bf616a', Generic.Emph: 'italic', Generic.Strong: 'bold', Generic.Prompt: 'bold #616e88', Generic.Output: '#d8dee9', Generic.Traceback: '#bf616a', Error: '#bf616a', Text: '#d8dee9', } class NordDarkerStyle(Style): """ Pygments version of a darker "nord" theme by Arctic Ice Studio """ line_number_color = "#D8DEE9" line_number_background_color = "#242933" line_number_special_color = "#242933" line_number_special_background_color = "#D8DEE9" background_color = "#242933" highlight_color = "#3B4252" styles = { Token: "#d8dee9", Whitespace: '#d8dee9', Punctuation: '#eceff4', Comment: 'italic #616e87', Comment.Preproc: '#5e81ac', Keyword: 'bold #81a1c1', Keyword.Pseudo: 'nobold #81a1c1', Keyword.Type: 'nobold #81a1c1', Operator: 'bold #81a1c1', Operator.Word: 'bold #81a1c1', Name: '#d8dee9', Name.Builtin: '#81a1c1', Name.Function: '#88c0d0', Name.Class: '#8fbcbb', Name.Namespace: '#8fbcbb', Name.Exception: '#bf616a', Name.Variable: '#d8dee9', Name.Constant: '#8fbcbb', Name.Entity: '#d08770', Name.Attribute: '#8fbcbb', Name.Tag: '#81a1c1', Name.Decorator: '#d08770', String: '#a3be8c', String.Doc: '#616e87', String.Interpol: '#a3be8c', String.Escape: '#ebcb8b', String.Regex: '#ebcb8b', String.Symbol: '#a3be8c', String.Other: '#a3be8c', Number: '#b48ead', Generic.Heading: 'bold #88c0d0', Generic.Subheading: 'bold #88c0d0', Generic.Deleted: '#bf616a', Generic.Inserted: '#a3be8c', Generic.Error: '#bf616a', Generic.Emph: 'italic', Generic.Strong: 'bold', Generic.Prompt: 'bold #616e88', Generic.Output: '#d8dee9', Generic.Traceback: '#bf616a', Error: '#bf616a', Text: '#d8dee9', }