Skip to content

Commit

Permalink
chore: update colors and formatting in all projects
Browse files Browse the repository at this point in the history
  • Loading branch information
mdsanima committed Aug 26, 2024
1 parent 29e5504 commit 7a759b4
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 15 deletions.
9 changes: 3 additions & 6 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
# Copyright (c) 2024 MDSANIMA LAB. All rights reserved.
# Licensed under the MIT license.

cmake_minimum_required(VERSION 3.22)

set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)

project(mdsanima VERSION 0.2.2)

Expand Down
6 changes: 3 additions & 3 deletions project/mdsanima-amarooke/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
int main(void)
{
const char *message = " MDSANIMA AMAROOKE ";
const int orange = 202; // Text color
const int red = 196; // Background color
const int fgColor = 38; // Text color
const int bgColor = 26; // Background color

cprint(message, orange, red);
cprint(message, fgColor, bgColor);

return 0;
}
6 changes: 3 additions & 3 deletions project/mdsanima-blizzard/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
int main(void)
{
const char *message = " MDSANIMA BLIZZARD ";
const int teal = 36; // Text color
const int green = 46; // Background color
const int fgColor = 48; // Text color
const int bgColor = 36; // Background color

cprint(message, teal, green);
cprint(message, fgColor, bgColor);

return 0;
}
6 changes: 3 additions & 3 deletions project/mdsanima-conquest/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
int main(void)
{
const char *message = " MDSANIMA CONQUEST ";
const int sky = 45; // Text color
const int blue = 27; // Background color
const int fgColor = 74; // Text color
const int bgColor = 62; // Background color

cprint(message, sky, blue);
cprint(message, fgColor, bgColor);

return 0;
}

0 comments on commit 7a759b4

Please sign in to comment.