-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ae555a4
commit 55b5d70
Showing
2 changed files
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/* Style for .token */ | ||
.token { | ||
color: #d2691e; /* Chocolate color for tokens */ | ||
} | ||
|
||
/* Style for .function */ | ||
.function { | ||
color: #ff4500; /* Orange red color for functions */ | ||
} | ||
|
||
/* Style for .property */ | ||
.property { | ||
color: #2e8b57; /* Sea green color for properties */ | ||
} | ||
|
||
/* Style for .directive */ | ||
.directive { | ||
color: #b22222; /* Firebrick color for directives */ | ||
} | ||
|
||
/* Style for .macro */ | ||
.macro { | ||
color: #8a2be2; /* Blue violet color for macros */ | ||
} | ||
|
||
/* Style for .string */ | ||
.string { | ||
color: #4682b4; /* Steel blue color for strings */ | ||
} | ||
|
||
/* Style for .keyword */ | ||
.keyword { | ||
color: #1e90ff; /* Dodger blue color for keywords */ | ||
} | ||
|
||
/* Style for .operator */ | ||
.operator { | ||
color: #ff1493; /* Deep pink color for operators */ | ||
} | ||
|
||
/* Style for .number */ | ||
.number { | ||
color: #cd853f; /* Peru color for numbers */ | ||
} | ||
|
||
/* Style for .parameter */ | ||
.parameter { | ||
color: #9370db; /* Medium purple color for parameters */ | ||
} | ||
|
||
/* Style for .variable */ | ||
.variable { | ||
color: #ff00ff; /* Magenta color for variables */ | ||
} | ||
|
||
/* Style for .comment */ | ||
.comment { | ||
color: #32cd32; /* Lime green color for comments */ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters