Skip to content

Commit

Permalink
⬆ [Cool]
Browse files Browse the repository at this point in the history
  • Loading branch information
JulesFouchy committed Feb 3, 2025
1 parent 69d408a commit 71d1592
Show file tree
Hide file tree
Showing 14 changed files with 839 additions and 1,365 deletions.
8 changes: 8 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,14 @@ Cool__set_app_icon(${PROJECT_NAME} "Lab/res/logo.png" "${CMAKE_SOURCE_DIR}/Lab/a
Cool__target_copy_file(${PROJECT_NAME} "Lab/res/logo.png")
install(FILES "Lab/res/logo.png" DESTINATION "Lab/res")

function(Lab_copy_folder FOLDER_RELATIVE_PATH)
Cool__target_copy_folder(${PROJECT_NAME} ${FOLDER_RELATIVE_PATH})
install(DIRECTORY ${FOLDER_RELATIVE_PATH} DESTINATION bin)
endfunction()

Lab_copy_folder("User data Default")
Lab_copy_folder("User data Init")

# ---------------------
# ---CPack---
# ---------------------
Expand Down
45 changes: 45 additions & 0 deletions User data Default/Color Themes/Dark.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"Categories": {
"Accent": {
"B": 0.8901960849761963,
"G": 0.4470588266849518,
"R": 0.3019607961177826
},
"Background": {
"B": 0.0784313753247261,
"G": 0.07058823853731155,
"R": 0.062745101749897
},
"Bright": {
"B": 0.26274511218070984,
"G": 0.2235294133424759,
"R": 0.19607843458652496
},
"Error": {
"B": 0.36000001430511475,
"G": 0.25,
"R": 0.75
},
"Medium": {
"B": 0.14509804546833038,
"G": 0.125490203499794,
"R": 0.10980392247438431
},
"Success": {
"B": 0.3799999952316284,
"G": 0.6299999952316284,
"R": 0.10999999940395355
},
"Text": {
"B": 0.9098039269447327,
"G": 0.9137254953384399,
"R": 0.8941176533699036
},
"Warning": {
"B": 0.09000000357627869,
"G": 0.5799999833106995,
"R": 0.8299999833106995
}
},
"Is Dark Mode": true
}
45 changes: 45 additions & 0 deletions User data Default/Color Themes/Light.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
"Categories": {
"Accent": {
"B": 0.8901960849761963,
"G": 0.4470588266849518,
"R": 0.3019607961177826
},
"Background": {
"B": 0.9098039269447327,
"G": 0.9137254953384399,
"R": 0.8941176533699036
},
"Bright": {
"B": 0.7568627595901489,
"G": 0.7019608020782471,
"R": 0.6705882549285889
},
"Error": {
"B": 0.36000001430511475,
"G": 0.25,
"R": 0.75
},
"Medium": {
"B": 0.8627451062202454,
"G": 0.8274509906768799,
"R": 0.8039215803146362
},
"Success": {
"B": 0.3799999952316284,
"G": 0.6299999952316284,
"R": 0.10999999940395355
},
"Text": {
"B": 0.0784313753247261,
"G": 0.07058823853731155,
"R": 0.062745101749897
},
"Warning": {
"B": 0.09000000357627869,
"G": 0.5799999833106995,
"R": 0.8299999833106995
}
},
"Is Dark Mode": false
}
Loading

0 comments on commit 71d1592

Please sign in to comment.