Skip to content

Instantly share code, notes, and snippets.

@eduwass
Created August 1, 2025 23:33
Show Gist options
  • Save eduwass/4aa80678d1abcd3889028b9d4286dec3 to your computer and use it in GitHub Desktop.
Save eduwass/4aa80678d1abcd3889028b9d4286dec3 to your computer and use it in GitHub Desktop.
cool php vardumps in shades of purple theme
pre.xdebug-var-dump {
font-family: 'Fira Code', monospace;
font-size: 13px;
background-color: #1e1e3f;
/* background */
color: #b4fdfe;
/* default text */
border: 1px solid #3d375e;
border-radius: 8px;
padding: 16px;
margin: 1.5em 0;
overflow-x: auto;
white-space: pre-wrap;
line-height: 1.6;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
small {
color: #a866f7;
/* dimmed */
font-style: italic;
}
b {
color: #b4fdfe;
/* cyan-blue, like headings */
}
i {
color: #de963b
/* yellow/orange */
}
font[color="#888a85"] {
color: #d5913d !important;
/* operator: => */
}
font[color="#4e9a06"] {
color: #ed6c8d !important;
/* string content */
}
font[color="#cc0000"] {
color: #f0d046 !important;
/* string content */
}
font[color="#0000cc"] {
color: #82aaff !important;
/* numbers */
}
font[color="#008000"] {
color: #de963b !important;
/* types like int */
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment