Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
pygments /
styles /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
__init__.py
3.15
KB
-rw-r--r--
abap.py
727
B
-rw-r--r--
algol.py
2.19
KB
-rw-r--r--
algol_nu.py
2.2
KB
-rw-r--r--
arduino.py
4.36
KB
-rw-r--r--
autumn.py
2.07
KB
-rw-r--r--
borland.py
1.5
KB
-rw-r--r--
bw.py
1.3
KB
-rw-r--r--
colorful.py
2.69
KB
-rw-r--r--
default.py
2.45
KB
-rw-r--r--
dracula.py
3.27
KB
-rw-r--r--
emacs.py
2.4
KB
-rw-r--r--
friendly.py
2.47
KB
-rw-r--r--
friendly_grayscale.py
2.67
KB
-rw-r--r--
fruity.py
1.24
KB
-rw-r--r--
gruvbox.py
3.15
KB
-rw-r--r--
igor.py
715
B
-rw-r--r--
inkpot.py
2.27
KB
-rw-r--r--
lilypond.py
2.03
KB
-rw-r--r--
lovelace.py
3.08
KB
-rw-r--r--
manni.py
2.29
KB
-rw-r--r--
material.py
4.01
KB
-rw-r--r--
monokai.py
4.94
KB
-rw-r--r--
murphy.py
2.66
KB
-rw-r--r--
native.py
1.9
KB
-rw-r--r--
onedark.py
1.67
KB
-rw-r--r--
paraiso_dark.py
5.42
KB
-rw-r--r--
paraiso_light.py
5.42
KB
-rw-r--r--
pastie.py
2.39
KB
-rw-r--r--
perldoc.py
2.1
KB
-rw-r--r--
rainbow_dash.py
2.4
KB
-rw-r--r--
rrt.py
874
B
-rw-r--r--
sas.py
1.38
KB
-rw-r--r--
solarized.py
3.98
KB
-rw-r--r--
stata_dark.py
1.19
KB
-rw-r--r--
stata_light.py
1.22
KB
-rw-r--r--
tango.py
6.9
KB
-rw-r--r--
trac.py
1.86
KB
-rw-r--r--
vim.py
1.91
KB
-rw-r--r--
vs.py
1.02
KB
-rw-r--r--
xcode.py
1.44
KB
-rw-r--r--
zenburn.py
2.13
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : dracula.py
""" pygments.styles.dracula ~~~~~~~~~~~~~~~~~~~~~~~ Pygments version of `Dracula` from https://github.com/dracula/dracula-theme. Based on the Dracula Theme for pygments by Chris Bracco. See https://github.com/dracula/pygments/tree/fee9ed5613d1086bc01b9d0a5a0e9867a009f571 :copyright: Copyright 2006-2021 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, Literal, Number, Operator, Other, Punctuation, Text, Generic, Whitespace, ) class DraculaStyle(Style): default_style = "" background_color = "#282a36" highlight_color = "#44475a" line_number_color = "#f1fa8c" line_number_background_color = "#44475a" line_number_special_color = "#50fa7b" line_number_special_background_color = "#6272a4" styles = { Whitespace: "#f8f8f2", Comment: "#6272a4", Comment.Hashbang: "#6272a4", Comment.Multiline: "#6272a4", Comment.Preproc: "#ff79c6", Comment.Single: "#6272a4", Comment.Special: "#6272a4", Generic: "#f8f8f2", Generic.Deleted: "#8b080b", Generic.Emph: "#f8f8f2 underline", Generic.Error: "#f8f8f2", Generic.Heading: "#f8f8f2 bold", Generic.Inserted: "#f8f8f2 bold", Generic.Output: "#44475a", Generic.Prompt: "#f8f8f2", Generic.Strong: "#f8f8f2", Generic.Subheading: "#f8f8f2 bold", Generic.Traceback: "#f8f8f2", Error: "#f8f8f2", Keyword: "#ff79c6", Keyword.Constant: "#ff79c6", Keyword.Declaration: "#8be9fd italic", Keyword.Namespace: "#ff79c6", Keyword.Pseudo: "#ff79c6", Keyword.Reserved: "#ff79c6", Keyword.Type: "#8be9fd", Literal: "#f8f8f2", Literal.Date: "#f8f8f2", Name: "#f8f8f2", Name.Attribute: "#50fa7b", Name.Builtin: "#8be9fd italic", Name.Builtin.Pseudo: "#f8f8f2", Name.Class: "#50fa7b", Name.Constant: "#f8f8f2", Name.Decorator: "#f8f8f2", Name.Entity: "#f8f8f2", Name.Exception: "#f8f8f2", Name.Function: "#50fa7b", Name.Label: "#8be9fd italic", Name.Namespace: "#f8f8f2", Name.Other: "#f8f8f2", Name.Tag: "#ff79c6", Name.Variable: "#8be9fd italic", Name.Variable.Class: "#8be9fd italic", Name.Variable.Global: "#8be9fd italic", Name.Variable.Instance: "#8be9fd italic", Number: "#ffb86c", Number.Bin: "#ffb86c", Number.Float: "#ffb86c", Number.Hex: "#ffb86c", Number.Integer: "#ffb86c", Number.Integer.Long: "#ffb86c", Number.Oct: "#ffb86c", Operator: "#ff79c6", Operator.Word: "#ff79c6", Other: "#f8f8f2", Punctuation: "#f8f8f2", String: "#bd93f9", String.Backtick: "#bd93f9", String.Char: "#bd93f9", String.Doc: "#bd93f9", String.Double: "#bd93f9", String.Escape: "#bd93f9", String.Heredoc: "#bd93f9", String.Interpol: "#bd93f9", String.Other: "#bd93f9", String.Regex: "#bd93f9", String.Single: "#bd93f9", String.Symbol: "#bd93f9", Text: "#f8f8f2", }
Close