Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title>Knock Cpp</title>
</head>
<body class="bg-dark">
<body class="negro-apagado">
<style>

::-webkit-scrollbar {
Expand All @@ -24,6 +24,11 @@
::-webkit-scrollbar-thumb:hover {
background: rgb(40, 42, 54);
}
.negro-apagado {
background-color: #121212;
}


</style>
<noscript>
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
Expand Down
11 changes: 9 additions & 2 deletions src/components/barra.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>


<b-navbar toggeable="lg" class="navbar-horizontal" type="dark" variant="dark">
<b-navbar toggeable="lg" class="navbar-horizontal negro-apagado" type="dark">
<!-- primera parte de la barra -->
<b-navbar-nav>
<b-navbar-brand>
Expand Down Expand Up @@ -31,4 +31,11 @@ export default {
}
}
}
</script>
</script>


<style scoped>
.negro-apagado {
background-color: #121212;
}
</style>
9 changes: 2 additions & 7 deletions src/components/basecanvas.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
>
<b-container style="display:inline;">
<b-form-select
class="text-center mt-1 text-info col-sm-2 font-weight-bold"
class="text-center mt-1 text-white col-sm-2 font-weight-bold"
v-model="standar"
style="background: rgba(0,0,0,0);"
title="el estandar con el que se compilara c++"
Expand All @@ -17,7 +17,7 @@
<b-form-select-option value="c++2a">c++2a</b-form-select-option>
</b-form-select>
<b-form-select
class="ml-3 mt-1 text-center text-info col-md-1 font-weight-bold"
class="ml-3 mt-1 text-center text-white col-md-1 font-weight-bold"
v-model="optimizar"
style="background: rgba(0,0,0,0);"
title="el nivel de optimizacion a la hora de compilar, esto se vera en el codigo ensamblador"
Expand Down Expand Up @@ -99,7 +99,6 @@ import 'codemirror/theme/dracula.css'
import 'codemirror/theme/yonce.css'
import 'codemirror/theme/monokai.css'
import 'codemirror/theme/base16-dark.css'
import 'codemirror/theme/base16-light.css'


import 'codemirror/mode/clike/clike.js'
Expand Down Expand Up @@ -221,8 +220,4 @@ export default {
.base16-dark {
background: rgb(21, 21, 21);
}
.default {
background: rgb(199, 200, 204);
}

</style>
1 change: 0 additions & 1 deletion src/components/extra/themes.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
<b-form-select-option value="monokai">monokai</b-form-select-option>
<b-form-select-option value="yonce">yonce</b-form-select-option>
<b-form-select-option value="base16-dark">dark</b-form-select-option>
<b-form-select-option value="default">light</b-form-select-option>
</b-form-select>

</b-card>
Expand Down
4 changes: 2 additions & 2 deletions src/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ return 0;
lineNumbers: true,
keyMap: "sublime",
mode: 'text/x-csrc',
theme: localStorage.getItem('theme') || "dracula",
theme: localStorage.getItem('theme') || "yonce",
},
bytheme: 'dracula',
bytheme: 'yonce',
//readonly
time: {
hour: new Date().getHours(),
Expand Down