Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit e03d3ef

Browse filesBrowse files
author
Nxrth-x
committed
Feat: Added installation guide and sample code
Added theme screenshot image Updated installation guide Updated README.md file
1 parent 958fd6a commit e03d3ef
Copy full SHA for e03d3ef

File tree

Expand file treeCollapse file tree

9 files changed

+75
-70
lines changed
Filter options
Expand file treeCollapse file tree

9 files changed

+75
-70
lines changed

‎Dracula.syntax

Copy file name to clipboard
+21Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
[Editor.Custom]
2+
Assembler=$00C679FF, $00362A28, 0, 0, 0
3+
Character=$008CFAF1, $00362A28, 0, 0, 0
4+
Comment=$00A47262, $00362A28, 0, 0, 0
5+
Float=$FFF993BE, $00362A28, 0, 0, 0
6+
Hexadecimal=$00F993BD, $00362A28, 0, 0, 0
7+
Identifier=$00F2F8F8, $00362A28, 0, 0, 0
8+
Illegal Char=$005555FF, $00362A28, 0, 0, 0
9+
Number=$00F993BD, $00362A28, 0, 0, 0
10+
Octal=$00F993BD, $00362A28, 0, 0, 0
11+
Preprocessor=$00C679FF, $00362A28, 0, 0, 0
12+
Reserved Word=$00FDE98B, $00362A28, 0, 1, 0
13+
Space=clWindowText, $00362A28, 0, 0, 0
14+
String=$008BE9FC, clNone, 0, 0, 0
15+
Symbol=$00C679FF, $00362A28, 0, 0, 0
16+
Selected text=15923448, 5916484
17+
Gutter=10777186, 3549736
18+
Breakpoints=15923448, 13007359
19+
Error line=16777215, 5592564
20+
Active breakpoints=16777215, 16356285
21+
Folding lines=5916484, 5328448

‎INSTALL.md

Copy file name to clipboard
+13-11Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
1-
### [X](http://link-to-x.com)
1+
### [Dev C++](https://www.bloodshed.net/)
22

3-
#### Install using Git
3+
#### Installation
44

5-
If you are a git user, you can install the theme and keep up to date by cloning the repo:
5+
You can install it by cloning [this](https://github.com/Nxrth-x/dracula-dev-cpp) repository or from just downloading the [Dracula.syntax](https://github.com/Nxrth-x/dracula-dev-cpp/tree/master/Dracula.syntax) file.
66

7-
git clone https://github.com/dracula/template.git
8-
9-
#### Install manually
7+
#### Activating theme
108

11-
Download using the [GitHub .zip download](https://github.com/dracula/template/archive/master.zip) option and unzip them.
9+
To install this theme for the Windows version of [Dev C++](https://www.bloodshed.net/) all you have to do is
1210

13-
#### Activating theme
11+
- Download the [Dracula.syntax](https://github.com/Nxrth-x/dracula-dev-cpp/tree/master/Dracula.syntax) file
12+
- Copy the file to `C:\Users\$YOUR_USERNAME\AppData\Roaming\Dev-Cpp`
13+
- Open the Dev C++ IDE
14+
- Go to `Tools > Editor Options` on the top menu
15+
![Tools menu on the IDE](./images/installation_1.jpeg)
16+
- Open the `colors` tab and select `Dracula` as your theme
17+
![Setting up Dracula as the theme in the colors tab](./images/installation_2.jpeg)
1418

15-
1. Do this
16-
2. Then that
17-
3. Boom! It's working
19+
> That's it, now you're a vampire too! 🦇

‎README.md

Copy file name to clipboard
+7-7Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
# Dracula for [X](http://link-to-x.com)
1+
# Dracula for [Dev C++](https://www.bloodshed.net/)
22

3-
> A dark theme for [X](http://link-to-x.com).
3+
> A dark theme for [Dev C++](https://www.bloodshed.net/).
44
55
![Screenshot](./screenshot.png)
66

77
## Install
88

9-
All instructions can be found at [draculatheme.com/x](https://draculatheme.com/x).
9+
All instructions can be found at [draculatheme.com/dev-cpp](https://draculatheme.com/dev-cpp).
1010

1111
## Team
1212

1313
This theme is maintained by the following person(s) and a bunch of [awesome contributors](https://github.com/dracula/template/graphs/contributors).
1414

15-
[![Zeno Rocha](https://github.com/zenorocha.png?size=100)](https://github.com/zenorocha) |
16-
--- |
17-
[Zeno Rocha](https://github.com/zenorocha) |
15+
| [![Zeno Rocha](https://github.com/Nxrth-x.png?size=100)](https://github.com/Nxrth-x) |
16+
| ------------------------------------------------------------------------------------ |
17+
| [Nxrth-x](https://github.com/Nxrth-x) |
1818

1919
## License
2020

21-
[MIT License](./LICENSE)
21+
[MIT License](./LICENSE)

‎images/installation_1.jpeg

Copy file name to clipboard
42.3 KB
Loading

‎images/installation_2.jpeg

Copy file name to clipboard
97.8 KB
Loading

‎sample/main.cpp

Copy file name to clipboard
+34Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
#include <iostream>
2+
#include <vector>
3+
4+
class Vampire
5+
{
6+
private:
7+
std::string location;
8+
int birthDate;
9+
int deathDate;
10+
11+
public:
12+
Vampire(std::string location, int birthDate, int deathDate)
13+
{
14+
this->location = location;
15+
this->birthDate = birthDate;
16+
this->deathDate = deathDate;
17+
}
18+
19+
int getAge()
20+
{
21+
return this->calculateAge();
22+
}
23+
24+
int calculateAge()
25+
{
26+
return this->deathDate - this->birthDate;
27+
}
28+
};
29+
30+
int main(void)
31+
{
32+
Vampire dracula = Vampire(std::string("Transylvania"), 1428, 1476);
33+
std::cout << "Dracula was " << dracula.calculateAge() << " years of pure spookiness." << std::endl;
34+
}

‎sample/sample.js

Copy file name to clipboardExpand all lines: sample/sample.js
-29Lines changed: 0 additions & 29 deletions
This file was deleted.

‎sample/sample.py

Copy file name to clipboardExpand all lines: sample/sample.py
-23Lines changed: 0 additions & 23 deletions
This file was deleted.

‎screenshot.png

Copy file name to clipboard
-176 KB
Loading

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.